我们通过一个方法判断 (1.str == "" 2.str == String.Empty 3.str.Length == 0)
static void Main()
{
string str = "csdn";
System.Diagnostics.Stopwatch st = new System.Diagnostics.Stopwatch();
st.Start();
for (int i = 0; i < 100000000; i++)
{
if (str == "")
{ }
}
st.Stop();
Console.WriteLine("str == '' : " + st.ElapsedMilliseconds);
st = new System.Diagnostics.Stopwatch();
st.Start();
for (int i = 0; i < 100000000; i++)
{
if (str == String.Empty)
{ }
}
st.Stop();
Console.WriteLine("str == String.Empty : " + st.ElapsedMilliseconds);
st = new System.Diagnostics.Stopwatch();
st.Start();
for (int i = 0; i < 100000000; i++)
{
if (str.Length == 0)
{ }
}
st.Stop();
Console.WriteLine("str.Length == 0 : " + st.ElapsedMilliseconds);
Console.ReadKey();
}
F5 用行
str == '': 1951 (微妙为单位)
str =='': 1867
str =='': 522
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。