C# 可空值类型详解编程语言

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Threading.Tasks; 
 
namespace 可空值类型 
{ 
    class Program 
    { 
        static void Main(string[] args) 
        { 
            int? a = null; 
            int? b = 5; 
            Console.WriteLine(a);// 
            Console.WriteLine(b);//5 
            Console.WriteLine(a == b);//false 
            Console.ReadKey();             
        } 
 
    } 
 
 
}

 C# 可空值类型详解编程语言

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13175.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论