C# 判断字符为空的6种方法的效率实测对比

 更新时间:2016年05月04日 11:47:53   作者:wenjunsu  
本文主要介绍了C#中判断字符是否为空的方法,并实测对比各种方法的执行效率,最后推荐大家使用IsNullOrEmpty,效率和易用性比较均衡。

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# Request.Form用法案例详解

    C# Request.Form用法案例详解

    这篇文章主要介绍了C# Request.Form用法案例详解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下
    2021-08-08
  • c#读取xml文件到datagridview实例

    c#读取xml文件到datagridview实例

    c#读取xml文件到datagridview实例,需要的朋友可以参考一下
    2013-03-03
  • .net 通过 WebAPI 调用nsfwjs 进行视频鉴别功能

    .net 通过 WebAPI 调用nsfwjs 进行视频鉴别功能

    这篇文章主要介绍了.net 通过 WebAPI 调用 nsfwjs 进行视频鉴别,文末给大家提到了FFMPEG获取视频关键帧并保存成jpg图像的相关知识,需要的朋友可以参考下
    2021-09-09
  • C#多线程系列之多阶段并行线程

    C#多线程系列之多阶段并行线程

    本文详细讲解了C#多线程的多阶段并行线程,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-02-02
  • C#使用ScrapySharp快速从网页采集数据

    C#使用ScrapySharp快速从网页采集数据

    这篇文章介绍了使用ScrapySharp快速从网页采集数据的方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-06-06
  • c# 委托详解

    c# 委托详解

    本文将通过实例解析对c# 委托进行详细介绍,具有很好的参考价值,下面跟着小编一起来看下吧
    2017-02-02
  • C# 模式匹配完全指南

    C# 模式匹配完全指南

    模式匹配是一种高端的使用机制,它允许程序员在开发的时候以对象的类型作为条件筛选和分情况处理的一种手段,本文给大家介绍C# 模式匹配完全指南,感兴趣的朋友跟随小编一起看看吧
    2022-03-03
  • c# 值类型实例构造器

    c# 值类型实例构造器

    CLR总是允许创建值类型的实例。另外值类型不一定需要定义构造器,c#编译器不会为值类型生成默认的无参构造器
    2012-10-10
  • DevExpress的DateEdit设置显示日期和时间的方法

    DevExpress的DateEdit设置显示日期和时间的方法

    本文主要介绍了DevExpress的DateEdit设置显示日期和时间的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-08-08
  • 详解c#索引(Index)和范围(Range)

    详解c#索引(Index)和范围(Range)

    这篇文章主要介绍了c#索引(Index)和范围(Range)的相关资料,帮助大家更好的理解和学习c#,感兴趣的朋友可以了解下
    2020-10-10

最新评论