C# 判断字符为空的6种方法的效率实测对比
C#中提供了相当丰富的方法或属性来判断一个字符是否为空,常用的方法有以下6种
1. strTest== ""
2. strTest.Equals("")
3. strTest== string.Empty
4. strTest.Equals(string.Empty)
5. strTest.Length == 0
6. string.IsNullOrEmpty(strTest)
为了对以上6种方法的效率,有个直观的感受,我特意编写了以下的测试代码:
using System; namespace StrTest { class Program { //定义3个字符串 以便测试在多种情况下 下面6种判断方法的速度 public static string strTest01 = ""; public static string strTest02 = string.Empty; public static string strTest03 = "0123456789"; public static DateTime start, end; //定义开始时间 和 结束时间 public static TimeSpan ts; //定义两个时间的间隔 //**********************对strTest使用6种测试方法***************************** public static void Test(string strTest) { //string == "" start = DateTime.Now; for (int counter = 0; counter <= 100000000; counter++) { if (strTest == "") { } } end = DateTime.Now; ts = end - start; Console.WriteLine("string == /"/" 时间消耗为 " + ts.TotalSeconds + " 秒"); //string.Equals("") start = DateTime.Now; for (int counter = 0; counter <= 100000000; counter++) { if (strTest.Equals("")) { } } end = DateTime.Now; ts = end - start; Console.WriteLine("string.Equals(/"/") 时间消耗为 " + ts.TotalSeconds + " 秒"); //string == stirng.Empty start = DateTime.Now; for (int counter = 0; counter <= 100000000; counter++) { if (strTest == string.Empty) { } } end = DateTime.Now; ts = end - start; Console.WriteLine("string == string.Empty 时间消耗为 " + ts.TotalSeconds + " 秒"); //string.Equals(string.Empty) start = DateTime.Now; for (int counter = 0; counter <= 100000000; counter++) { if (strTest.Equals(string.Empty)) { } } end = DateTime.Now; ts = end - start; Console.WriteLine("string.Equals(string.Empty) 时间消耗为 " + ts.TotalSeconds + " 秒"); //string.Length == 0 start = DateTime.Now; for (int counter = 0; counter <= 100000000; counter++) { if (strTest.Length == 0) { } } end = DateTime.Now; ts = end - start; Console.WriteLine("string.Length == 0 时间消耗为 " + ts.TotalSeconds + " 秒"); //string.IsNullOrEmpty(string) start = DateTime.Now; for (int counter = 0; counter <= 100000000; counter++) { if (string.IsNullOrEmpty(strTest)) { } } end = DateTime.Now; ts = end - start; Console.WriteLine("string.IsNullOrEmpty(string) 时间消耗为 " + ts.TotalSeconds + " 秒" + "/n"); } static void Main(string[] args) { Console.WriteLine("======================================="); Console.WriteLine("strTest = /"/" 的5种测试结果"); Console.WriteLine("======================================="); Test(strTest01); Console.WriteLine("======================================="); Console.WriteLine("strTest = string.Emtpy 的5种测试结果"); Console.WriteLine("======================================="); Test(strTest02); Console.WriteLine("======================================="); Console.WriteLine("strTest = /"0123456789/" 的5种测试结果"); Console.WriteLine("======================================="); Test(strTest03); Console.ReadLine(); //等待键盘的输入 作用:使屏幕暂停在此处 } } }
我把能关的软件都关闭掉了 尽可能的屏蔽掉系统影响 并且让6种方法都运行了1亿次
第一次的截图:
第二次的截图:
从以上可以看出:字符串在三种情况下,string.Length == 0的效率无疑是最高的。
总结
1. strTest== "" 不推荐使用,只能判断“值为空字符串”的字符串变量,而且效率比较低。
2. strTest.Equals("") 不推荐使用,同 1。
3. strTest== string.Empty 不推荐使用,只能判断“值为null”的字符串变量,而且效率低。
4. strTest.Equals(string.Empty) 不推荐使用,同 3。
5. strTest.Length == 0 这种方式,我不怎么喜欢用,不推荐使用。在自己的实际测试中,确实能证明这种判断方式的执行效率最高,但要使用它你必须保证字符串不null,如果为null就会报出异常。
6. string.IsNullOrEmpty(strTest) 这种方法是我最喜欢用的,它不但一次性能判断"空的字符串变量",还能判断“值为空字符串的变量”,并且还可以让代码简洁美观。判断的效率也不算低。
上一篇:C#中正则表达式的3种匹配模式
栏 目:C#教程
下一篇:C#重写DataGridView
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6548.html
您可能感兴趣的文章
- 01-10C#实现实体类与字符串互相转换的方法
- 01-10C#实现判断当前操作用户管理角色的方法
- 01-10WinForm判断关闭事件来源于用户点击右上角“关闭”按钮的方法
- 01-10C# readnodefile()不能读取带有文件名为汉字的osg文件解决方法
- 01-10C#实现将应用程序设置为开机启动的方法
- 01-10使用Nopcommerce为商城添加满XX减XX优惠券功能
- 01-10http图片上传安全性问题 根据ContentType (MIME) 判断其实不准确、不
- 01-10C#中Json字符串的各种应用类实例讲解
- 01-10VS中C#读取app.config数据库配置字符串的三种方法
- 01-10C#实现过滤sql特殊字符的方法集合
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 04-02jquery与jsp,用jquery
- 01-10delphi制作wav文件的方法
- 01-11ajax实现页面的局部加载
- 01-10C#中split用法实例总结
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10SublimeText编译C开发环境设置
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 08-05织梦dedecms什么时候用栏目交叉功能?