判断是否为空然后赋值_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 判断是否为空然后赋值

判断是否为空然后赋值

 2017/12/8 12:14:44  Insus.NET  程序员俱乐部  我要评论(0)
  • 摘要:如果一个对象不为空null时,把它赋给另外一个对象:像下面这个样子,需要把str的值赋给result,前提条件是在不为空null的前提之下:classAj{publicvoidDemoNUll(){stringstr=null;stringresult="";}}SourceCode方法一:if(str==null)result="";elseresult=str;SourceCode方法二:if(str!=null){result=str;}SourceCode方法三
  • 标签:

如果一个对象不为空null时,把它赋给另外一个对象:

像下面这个样子,需要把str的值赋给result,前提条件是在不为空null的前提之下:

 

class="code_img_closed" src="/Upload/Images/2017120812/0015B68B3C38AA5B.gif" alt="" />logs_code_hide('bc35d2e9-3ef8-4aaa-b8b9-2014c19e2eb9',event)" src="/Upload/Images/2017120812/2B1B950FA3DF188F.gif" alt="" />
class Aj
    {
        public void DemoNUll()
        {
            string str = null;
            string result = "";          

        }
    }
Source Code

 

方法一: 

if (str == null)
                result = "";
            else
                result = str;
Source Code

 

方法二:

 

            if (str != null)
            {
                result = str;
            }
Source Code

 

方法三:

 

result = str == null ? "" : str;
Source Code

 

方法四:

 

result = str ?? "";
Source Code

 

  • 相关文章
发表评论
用户名: 匿名