为什么 .ToString() 在空字符串上导致空错误,当 .ToString() 在具有空值的可空整数上正常工作时?
- 作者: 日出江姗红似火丶
- 来源: 51数据库
- 2022-10-20
问题描述
selectedItem 有两个字段:
- int?_成本
- string _serialNumber
在这个例子中,selectedItem 的 _cost 和 _serialNumber 都为 null.我正在通过它们的属性阅读 selectedItem 的字段,并用它们的值填充文本框,当...
In this example, _cost and _serialNumber of selectedItem are BOTH null. I am reading through the fields of selectedItem via their properties, and filling in textboxes with their values, when...
TextBox1.Text = selectedItem.Cost.ToString(); //no error TextBox2.Text = selectedItem.SerialNumber.ToString(); //error
我知道 SerialNumber.ToString() 是多余的(因为它已经是一个字符串),但我不明白为什么会导致这个异常:
I understand that SerialNumber.ToString() is redundant (because it is already a string), but I don't understand why this causes this exception:
可空对象必须有值.
- int?_cost 可以为空,并且没有值,但它没有给我例外.
- string _serialNumber 可以为空,并且没有值,但它确实给了我例外.
- int? _cost is nullable, and does not have a value, yet it does not give me the exception.
- string _serialNumber is nullable, and does not have a value, yet it does give me the exception.
这个问题触及它,这家伙本质上在问同样的事情,但有没有指定的答案,它也没有解释为什么可以为 null int?例如,我可以在可空 int 上使用 .ToString() 而不是在空字符串上使用吗?
This question touches on it, the guy is essentially asking the same thing, but there is no designated answer, and it also doesn't explain why a nullable int? For example, can I use .ToString() on a nullable int but not on a null string?
推荐答案
因为 string 类型的 null 真的指向空,所以内存中没有任何对象.
但是 int? type(nullable) 即使将值设置为 null 仍然指向某个对象.
如果您阅读 Jeffrey Richter 的CLR via C#"你会发现可空类型只是普通类型的外观类,带有一些封装的逻辑,以便更方便地使用 DB null.
Because string type's null really points to nothing, there isn't any object in memory.
But int? type(nullable) even with value set to null still points to some object.
If you read Jeffrey Richter's "CLR via C#" you'll find out that nullable type are just facade classes for common types with some incapsulated logics in order to make work with DB null more convenient.
查看 msdn 以了解可空类型.
Check msdn to learn about nullable types.
- C#通过fleck实现wss协议的WebSocket多人Web实时聊天(附源码)
- 团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
- 使用 MSBuild.exe 在发布模式下构建 C# 解决方案
- 当我发布 Web 应用程序时,AfterPublish 脚本不运行
- 构建时 T4 转换的产品仅在下一个构建中使用
- ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
- 新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
- 如何将条件编译符号(DefineConstants)传递给 msbuild
- MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
- NuGet 包还原找不到包,没有源
