zoukankan      html  css  js  c++  java
  • string.IsNullOrEmpty和string.IsNullOrWhiteSpace方法的区别

    由于原来一直都没注意到这两个方法,一直使用string.IsNullOrEmpty,当看到string.IsNullOrWhiteSpace时,而且在微软人员开发的项目中经常使用时才注意到,查了一下MSDN,记一下免得以后忘记。

    string.IsNullOrEmpty

    都知道,这个功能是判断字符串是否为:null或者string.Empty。如果是如" "这样的字符就返回false了,为了达到判断过滤这些功能,就要使用Trim()和Length属性帮忙,判断是否长度为零,于是乎就产生了如下的方法。

    string.IsNullOrWhiteSpace

    这个是判断所有空白字符,功能相当于string.IsNullOrEmpty和str.Trim().Length总和,他将字符串给Char.IsWhiteSpace为ture的任何字符都将是正确的。根据MSDN的说明,这个方法会比调用上述两个方法的性能更高而且简洁,所以在判断这个功能时,推荐使用。

    using System;
    
    public class Example
    {
       public static void Main()
       {
          string[] values = { null, String.Empty, "ABCDE", 
                              new String(' ', 20), "  	   ", 
                              new String('u2000', 10) };
          foreach (string value in values)
             Console.WriteLine(String.IsNullOrWhiteSpace(value));
       }
    }
    // The example displays the following output:
    //       True
    //       True
    //       False
    //       True
    //       True
    //       True

    以上就是代码执行效果,至于性能就听微软的吧,不过string.IsNullOrEmpty和string.IsNullOrWhiteSpace相比,肯定是前面一个性能更高【没有测试过,如果有哪位测试过的可以留言告诉我哦,谢谢!】,所以还是要选择性使用的。

  • 相关阅读:
    【甘道夫】通过Mahout构建贝叶斯文本分类器案例具体解释
    hdu 5044 树区间操作最后输出/ lca+dfs
    UVA 1371
    裴蜀定理
    iOS 开发系列:CoreData Object 变成 Fault 的一种方式
    UVa 10633
    校赛热身赛 Problem D. Unsolved Mystery
    校赛热身赛 Problem D. Unsolved Mystery
    NOIP2005普及组第4题 循环
    NOIP2005普及组第4题 循环
  • 原文地址:https://www.cnblogs.com/net-sky/p/8030075.html
Copyright © 2011-2022 走看看