3種方法都是等效的,那麼究竟那一種方法性能最高呢?本人用實驗說明問題。
建立3個ASPx頁面(為什麼用網頁,主要是利用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個壓力測試項目:
測試結果:
WebForm1.ASPx----------if(a=="")
WebForm2.ASPx-------if(a==String.Empty)
WebForm3.ASPx-------if(a.Length==0)
所以3種方法量化的結果是98,105,168:
那麼為什麼if(a.Length==0)最快呢?
因為整數判斷等於最快,沒有經過實例化等復雜的過程。
所以:建議大家判斷字符串是否為空用 if(a.Length==0)。