首页 > 代码库 > ylbtech-LanguageSamples-Nullable(可以为 null 的类型)
ylbtech-LanguageSamples-Nullable(可以为 null 的类型)
ylbtech-Microsoft-CSharpSamples:ylbtech-LanguageSamples-Nullable(可以为 null 的类型) |
1.A,示例(Sample) 返回顶部 |
“可以为 null 的类型”示例
本示例演示了如何使用可以为 null 的类型。此功能允许将值类型设置为未初始化状态(即空状态),这与将引用类型设置为 null 的方式相似。
安全说明 提供此代码示例是为了阐释一个概念,它并不代表最安全的编码实践,因此不应在应用程序或网站中使用此代码示例。对于因将此代码示例用于其他用途而出现的偶然或必然的损害,Microsoft 不承担任何责任。
在 Visual Studio 中生成并运行“可以为 null 的类型”示例
在 Windows 资源管理器中双击 Nullable.sln 解决方案文件,或单击“文件”菜单上的“打开”,以打开该文件。
在“调试”菜单上单击“开始执行(不调试)”。
从命令行生成并运行“可以为 null 的类型”示例
使用“更改目录(cd)”命令转到“Nullable”目录。
键入以下命令:
cd Basicscsc Basics.csBasics
- 键入以下命令:
cd ..\Boxingcsc Boxing.csBoxing
- 键入以下命令:
cd ..\Operatorcsc Operator.csOperator
1.B,示例代码(Sample Code)返回顶部 |
1.B.1, Basics.cs
// 版权所有(C) Microsoft Corporation。保留所有权利。// 此代码的发布遵从// Microsoft 公共许可(MS-PL,http://opensource.org/licenses/ms-pl.html)的条款。////版权所有(C) Microsoft Corporation。保留所有权利。using System;class NullableBasics{ static void DisplayValue(int? num) { if (num.HasValue =http://www.mamicode.com/= true) { Console.WriteLine("num = " + num); } else { Console.WriteLine("num = null"); } // 如果 num.HasValue 为 false,则 num.Value 引发 InvalidOperationException try { Console.WriteLine("value = http://www.mamicode.com/{0}", num.Value); } catch (InvalidOperationException e) { Console.WriteLine(e.Message); } } static void Main() { DisplayValue(1); DisplayValue(null); }}
1.B.2,
1.B,示例代码2(Sample Code)返回顶部 |
1.B.1, Boxing.cs
// 版权所有(C) Microsoft Corporation。保留所有权利。// 此代码的发布遵从// Microsoft 公共许可(MS-PL,http://opensource.org/licenses/ms-pl.html)的条款。////版权所有(C) Microsoft Corporation。保留所有权利。using System;class NullableBoxing{ static void Main() { int? a; object oa; // 为 a 赋值 Nullable<int> (value = http://www.mamicode.com/default(int), hasValue = false)。 a = null; // 为 oa 赋值 null(因为 x==null),而不是装箱的“int?”。 oa = a; Console.WriteLine("Testing ‘a‘ and ‘boxed a‘ for null..."); // 可以将可以为 null 的变量与 null 进行比较。 if (a == null) { Console.WriteLine(" a == null"); } // 可以将装箱的可以为 null 的变量与 null 进行比较, // 因为对 HasValue=http://www.mamicode.com/=false 的可以为 null 的变量进行装箱>// 将把引用设置为 null。 if (oa == null) { Console.WriteLine(" oa == null"); } Console.WriteLine("Unboxing a nullable type..."); int? b = 10; object ob = b; // 装箱的可以为 null 的类型可以取消装箱 int? unBoxedB = (int?)ob; Console.WriteLine(" b={0}, unBoxedB={0}", b, unBoxedB); // 如果是取消装箱为可以为 null 的类型,则可以对设置为 null 的可以为 null 的类型 // 进行取消装箱。 int? unBoxedA = (int?)oa; if (oa == null && unBoxedA == null) { Console.WriteLine(" a and unBoxedA are null"); } Console.WriteLine("Attempting to unbox into non-nullable type..."); // 如果是取消装箱为不可以为 null 的类型,则对设置为 null 的可以为 null 的类型 //取消装箱将引发异常。 try { int unBoxedA2 = (int)oa; } catch (Exception e) { Console.WriteLine(" {0}", e.Message); } }}
1.B.2,
1.B,示例代码3(Sample Code)返回顶部 |
1.B.1, Operator.cs
// 版权所有(C) Microsoft Corporation。保留所有权利。// 此代码的发布遵从// Microsoft 公共许可(MS-PL,http://opensource.org/licenses/ms-pl.html)的条款。////版权所有(C) Microsoft Corporation。保留所有权利。using System;class NullableOperator{ static int? GetNullableInt() { return null; } static string GetStringValue() { return null; } static void Main() { // ?? 运算符示例。 int? x = null; // y = x,只有当 x 为 null 时,y = -1。 int y = x ?? -1; Console.WriteLine("y == " + y); // 将方法的返回值赋给 i, // 仅当返回值为 null 时, // 将默认的 int 值赋给 i。 int i = GetNullableInt() ?? default(int); Console.WriteLine("i == " + i); // ?? 也适用于引用类型。 string s = GetStringValue(); // 显示 s 的内容,仅当 s 为 null 时, // 显示“未指定”。 Console.WriteLine("s = {0}", s ?? "null"); }}
1.B.2,
1.C,下载地址(Free Download)返回顶部 |
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
ylbtech-LanguageSamples-Nullable(可以为 null 的类型)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。