本文介绍了在.NET空整型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是可空的整数,在那里能不能用?

what is the nullable integer and where can it be used?

推荐答案

可空整数 INT 可空< INT> 在C#中的值类型,其值可以是或整数值。它的默认值,而不是 0 ,并重新presenting有用的东西像值未设置(或任何你想让它重新present)。

The nullable integer int? or Nullable<int> is a value type in C# whose value can be null or an integer value. It defaults to null instead of 0, and is useful for representing things like value not set (or whatever you want it to represent).

这篇关于在.NET空整型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-12 13:24