ylbtech-Microsoft-CSharpSamples:ylbtech-LanguageSamples-Struct(结构) |
1.A,示例(Sample) 返回顶部 |
“结构”示例
本示例演示结构的语法和用法。它还介绍了类与结构之间的重大差异。有关更多信息,请参见对象、类和结构(C# 编程指南) 。
安全说明 |
---|
提供此代码示例是为了阐释一个概念,它并不代表最安全的编码实践,因此不应在应用程序或网站中使用此代码示例。对于因将此代码示例用于其他用途而出现的偶然或必然的损害,Microsoft 不承担任何责任。 |
在 Visual Studio 中生成并运行“结构”示例
-
在“解决方案资源管理器”中,右击“Struct1”项目并单击“设为启动项目”。
-
在“调试”菜单中,单击“开始执行(不调试)”。
-
对 Struct2 重复前面上述步骤。
从命令行生成并运行“结构”示例
-
使用“更改目录”命令转到“Struct1”目录。
-
键入以下命令:
csc struct1.cs struct1
-
使用“更改目录”命令转到“Struct2”目录。
-
键入以下命令:
csc struct2.cs struct2
1.B,Struct1 示例代码(Sample Code)返回顶部 |
1.B.1, struct1.cs
// 版权所有(C) Microsoft Corporation。保留所有权利。 // 此代码的发布遵从 // Microsoft 公共许可(MS-PL,http://opensource.org/licenses/ms-pl.html)的条款。 // //版权所有(C) Microsoft Corporation。保留所有权利。 // struct1.cs using System; struct SimpleStruct { private int xval; public int X { get { return xval; } set { if (value < 100) xval = value; } } public void DisplayX() { Console.WriteLine("The stored value is: {0}", xval); } } class TestClass { public static void Main() { SimpleStruct ss = new SimpleStruct(); ss.X = 5; ss.DisplayX(); } }
1.B.2,
1.B.EXE,
The stored value is: 5 请按任意键继续. . .
1.B
1.B,Struct2 示例代码2(Sample Code)返回顶部 |
1.B.1, struct2.cs
// 版权所有(C) Microsoft Corporation。保留所有权利。 // 此代码的发布遵从 // Microsoft 公共许可(MS-PL,http://opensource.org/licenses/ms-pl.html)的条款。 // //版权所有(C) Microsoft Corporation。保留所有权利。 // struct2.cs using System; class TheClass { public int x; } struct TheStruct { public int x; } class TestClass { public static void structtaker(TheStruct s) { s.x = 5; } public static void classtaker(TheClass c) { c.x = 5; } public static void Main() { TheStruct a = new TheStruct(); TheClass b = new TheClass(); a.x = 1; b.x = 1; structtaker(a); classtaker(b); Console.WriteLine("a.x = {0}", a.x); Console.WriteLine("b.x = {0}", b.x); } }
1.B.2,
1.B.EXE,
a.x = 1 b.x = 5 请按任意键继续. . .
1.B,
1.C,下载地址(Free Download)返回顶部 |
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |