gpt4 book ai didi

c# - 私有(private)诠释? _城市_Id;谁能告诉我 "?"在这里是什么意思

转载 作者:行者123 更新时间:2023-11-30 14:19:26 25 4
gpt4 key购买 nike

私有(private)整数? _City_Id;

最佳答案

在不知道您要回复的目标语言的情况下,在 C# 2.0? 表示可为 null 的值类型。

Nullable value types (denoted by a question mark, e.g. int? i = null;) which add null to the set of allowed values for any value type.

正如 Calum 指出的那样(所有功劳都归功于他),这意味着可以为变量分配 null。通常像 intdouble 这样的基元不能为空,

int? x = 10;
double? d = 4.108

关于c# - 私有(private)诠释? _城市_Id;谁能告诉我 "?"在这里是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2691088/

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