|
string a="";
1.if(a=="")
2.if(a==String.Empty)
3.if(a.Length==0)
3種方法都是等效的,那么究竟那一種方法性能最高呢?本人用實驗說明問題。
建立3個ASPx頁面(為什么用網(wǎng)頁,主要是利用Microsoft Application Center Test )
WebForm1.ASPx
復制代碼 代碼如下:
private void Page_Load(object sender, System.EventArgs e)
{
string a="";
for(int i=0;i<=1000000;i++)
{
if(a=="")
{
}
}
}
WebForm2.ASPx
復制代碼 代碼如下:
private void Page_Load(object sender, System.EventArgs e)
{
string a="";
for(int i=0;i<=1000000;i++)
{
if(a==String.Empty)
{
}
}
}
WebForm3.ASPx
復制代碼 代碼如下:
private void Page_Load(object sender, System.EventArgs e)
{
string a="";
for(int i=0;i<=1000000;i++)
{
if(a.Length==0)
{
}
}
}
在Microsoft Application Center Test 下建立3個壓力測試項目:

測試結(jié)果:
WebForm1.ASPx----------if(a=="")

WebForm2.ASPx-------if(a==String.Empty)

WebForm3.ASPx-------if(a.Length==0)

所以3種方法量化的結(jié)果是98,105,168:
方法 | 結(jié)果 |
if(a=="") | 98 |
if(a==String.Empty) | 105 |
if(a.Length==0) | 168 |
那么為什么if(a.Length==0)最快呢?
因為整數(shù)判斷等于最快,沒有經(jīng)過實例化等復雜的過程。
所以:建議大家判斷字符串是否為空用 if(a.Length==0)。
AspNet技術(shù):asp.ent(C#)中判斷空字符串的3種方法以及性能分析,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。