C# ??符号
1 static void Main(string[] args) 2 { 3 string strA = String.Empty; 4 string strB = String.Empty; 5 strA = null; 6 strB = "strB"; 7 /** 8 * 如果??左边的strA值为String.IsNullOrWhiteSpace则StrC=strB 9 * 如果??右边的strB值为String.IsNullOrWhiteSpace则StrC=strA 10 */ 11 string StrC = strA ?? strB; 12 Console.WriteLine(StrC); 13 14 strB = null; 15 strA = "strA"; 16 Console.WriteLine(strA ?? strB); 17 18 strB = String.Empty; 19 strA = "No Empty"; 20 string a = strA ?? strB; 21 Console.WriteLine(a == null ? "null" : a); 22 Console.ReadLine(); 23 }
输出
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步