这是null-coalescing 运算符。如果左操作数不为null,则null-coalescing运算符??返回其左操作数的值;否则,它会计算右操作数并返回其结果。如果左操作数评估为非null,则??运算符不会评估其右操作数。
可空类型可以表示未定义或来自类型域的值。当左操作数具有可空类型时,我们可以使用??运算符返回适当的值。如果我们尝试将可空值类型分配给非可空值类型而不使用??运算符,我们将得到一个编译时错误,如果我们强制进行强制转换,将抛出一个InvalidOperationException异常。
以下是Null-Coalescing运算符(??)的优点-
它用于为可空项(值类型和引用类型)定义默认值。
它防止运行时的InvalidOperationException异常。
它帮助我们消除许多冗余的“if”条件。
它适用于引用类型和值类型。
代码变得井然有序和可读。
演示
using System; namespace MyApplication{ class Program{ static void Main(string[] args){ int? value1 = null; int value2 = value1 ?? 99; Console.WriteLine("Value2: " + value2); string testString = "Null Coalescing"; string resultString = testString ?? "Original string is null"; Console.WriteLine("The value of result message is: " + resultString); } } }
上面例子的输出如下。
Value2: 99 The value of result message is: Null Coalescing
以上是两个问号在一起 (??) 在 C# 中意味着什么?的详细内容。更多信息请关注PHP中文网其他相关文章!