可空类型只能与值类型一起使用。
如果value为null,Value属性将抛出InvalidOperationException异常;否则,它将返回该值。
HasValue属性返回true,如果变量包含一个值,或者返回false,如果它为null。
只能使用==和!=运算符与可空类型一起使用。对于其他比较,请使用Nullable静态类。
不允许嵌套的可空类型。Nullable i;将导致编译时错误。
示例1
static class Program{
static void Main(string[] args){
string s = "123";
System.Console.WriteLine(s.ToNullableInt());
Console.ReadLine();
}
static int? ToNullableInt(this string s){
int i;
if (int.TryParse(s, out i)) return i;
return null;
}
}
登录后复制
输出
123
登录后复制
当将Null传递给扩展方法时,它不会打印任何值
static class Program{
static void Main(string[] args){
string s = null;
System.Console.WriteLine(s.ToNullableInt());
Console.ReadLine();
}
static int? ToNullableInt(this string s){
int i;
if (int.TryParse(s, out i)) return i;
return null;
}
}
登录后复制
输出
以上就是如何将字符串解析为可空的整数在C#中?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!