C# ?? 操作符示例

时间:2022-09-21 06:14:32
static int? GetNullableInt()
{
return null;
} static string GetStringValue()
{
return null;
} static void Main(string[] args)
{
// ?? 操作符 示例
int? x = null; // y = x, x 如果等于 null,y=-1
int y = x ?? -;
Console.WriteLine(y); //如果 GetNullableInt方法返回 null,i 等于 defalut(int) ,defalut(int) 等于 0
int i = GetNullableInt() ?? default(int);
Console.WriteLine(i); string s = GetStringValue();
//如果 s 为空的话把 s 赋值为 Unspecified
Console.WriteLine(s ?? "Unspecified");
}