C#如何判断整形变量不为空
展开全部
用int?来定义整型。
using System;
namespace ConsoleApplication15
{
class Program
{
static void Main(string[] args)
{
int? x = null;
// 判断是否为空
if (!x.HasValue)
{
Console.WriteLine("x为空");
}
x = 100;
// 判断是否有值
if (x.HasValue)
{
Console.WriteLine(x);
}
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询