欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

浅谈C# 中的可空值类型 null

程序员文章站 2024-02-22 15:51:16
c# 不允许把 null 赋给一个值类型的数据。在 c# 中,以下语句是非法的: 复制代码 代码如下:int a = null;    //...

c# 不允许把 null 赋给一个值类型的数据。在 c# 中,以下语句是非法的:

复制代码 代码如下:

int a = null;    // 非法 

但是,利用 c# 定义的一个修饰符,可将一个变量声明为一个可空(nullable)值类型。可空值类型在行为上与普通值类型相似,但可以将一个 null 值赋给它。如下所示:

复制代码 代码如下:

int? a = null;      // 合法

当把一个变量定义为可空值类型时,该变量依然可以被赋值为 0,代码如下所示:

复制代码 代码如下:

using system;
using system.collections.generic;
using system.linq;
using system.text;

namespace 可空类型
{
    class program
    {
        static void main(string[] args)
        {
            int? a = null;

            console.writeline("a = {0}", a);
            a = 0;
            console.writeline("a = {0}", a);
        }
    }
}

运行结果为:

浅谈C# 中的可空值类型 null

可空类型有如下属性:

复制代码 代码如下:

using system;
using system.collections.generic;
using system.linq;
using system.text;

namespace consoleapplication1
{
    class program
    {
        static void main(string[] args)
        {
            int? i = null;
            if (!i.hasvalue)    // 若 i 包含一个真正的值,则 i.hasvalue 为true
            {
                i = 99;
            }
            console.writeline(i.value); // i 的值
        }
    }
}

// i.hasvalue 比 i != null 走了不少冤枉路,i.value 也比 i 更麻烦
// 但是当使用更加复杂的值类型(struct)来声明可空类型时, .hasvalue 和 .value 就有了优势