本文主要是介绍c#中的问号点操作符含义,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Console.WriteLine(
$"3. Endpoint: {context.GetEndpoint()?.DisplayName ?? "(null)"}");
以上代码等同于下面的代码
string info = string.empty;
if(context.GetEndpoint()==null)
{
info = "(null)";
}
else if(context.GetEndpoint().DisplayName ==null)
{
info = "null";
}
else
{
info = context.GetEndpoint().DisplayName;
}
Console.WriteLine($"3. Endpoint:{info}“):
It’s the null conditional operator. It basically means:
“Evaluate the first operand; if that’s null, stop, with a result of null. Otherwise, evaluate the second operand (as a member access of the first operand).”
如果问号前面的是null,则该表达式直接返回null,
如果不为空,则继续进行下一步,通过点语法糖获取属性。
双问号的意思是如果是空,则返回后面的信息,否则返回自身结果。
这篇关于c#中的问号点操作符含义的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!