gpt4 book ai didi

c#-3.0 - Not nullable 到 Nullable 类型转换的基础知识

转载 作者:行者123 更新时间:2023-12-02 20:22:45 27 4
gpt4 key购买 nike

Not Nullable 类型转换为 Nullable 类型的基础知识是什么?

CLR 内部发生了什么?

值类型是否在内部转换为引用类型?

int i = 100;

and int ? i = 7?

两者都是值类型吗?

最佳答案

int? Nullable<int> 相同这是一个结构体,即值类型。这里没有到引用类型的转换。

以下是 MSDN 中对 Nullable 的定义:

[SerializableAttribute]
public struct Nullable<T> where T : struct, new()

关于c#-3.0 - Not nullable 到 Nullable 类型转换的基础知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2250058/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com