首页 > 编程 > C# > 正文

C#结构体特性实例分析

2019-10-29 21:38:05
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C#结构体特性,以实例形式较为详细的分析了C#结构体的功能、定义及相关特性,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了C#结构体特性。分享给大家供大家参考。具体如下:

结构体的定义:

结构体也可以象类一样可以单独定义.

 

 
  1. class a{}; 
  2. struct a{}; 

结构体也可以在名字前面加入控制访问符.

 

 
  1. public struct student{}; 
  2. internal struct student{}; 

如果结构体student没有publice或者internal的声明 类program就无法使用student结构定义 obj对象

如果结构体student的元素没有public的声明,对象obj就无法调用元素x

因为默认的结构体名和元素名是*******类型

程序:

 

 
  1. using System; 
  2. public struct student 
  3. public int x; 
  4. }; 
  5. class program 
  6. public static void Main() 
  7. student obj=new student(); 
  8. obj.x=100;  
  9. }; 

在结构体中也可以定义静态成员与类中一样,使用时必须用类名,或结构名来调用不属于实例,声明时直接定义.

程序:

 

 
  1. using System; 
  2. public struct student 
  3. public static int a = 10; 
  4. }; 
  5. class exe 
  6. public static void Main() 
  7. Console.WriteLine( student.a = 100); 
  8. }; 

或:

 

  1. using System; 
  2. class base 
  3. public struct student 
  4. public static int a = 10; 
  5. }; 
  6. class exe 
  7. public static void Main() 
  8. Console.WriteLine( base.student.a = 100); 
  9. }; 

在结构体中可以定义构造函数以初始化成员,但不可以重写默认无参构造函数和默认无参析构函数

程序:

 

 
  1. public struct student 
  2. public int x; 
  3. public int y; 
  4. public static int z; 
  5. public student(int a,int b,int c) 
  6. x=a; 
  7. y=b; 
  8. student.z=c; 
  9. }; 

在结构体中可以定义成员函数。

程序:

 

 
  1. public struct student 
  2. public void list() 
  3. Console.WriteLine("这是构造的函数"); 
  4. }; 

结构体的对象使用new运算符创建(obj)也可以直接创建单个元素赋值(obj2)这是与类不同的因为类只能使用new创建对象

程序:

 

 
  1. public struct student 
  2. public int x; 
  3. public int y; 
  4. public static int z; 
  5. public student(int a,int b,int c) 
  6. x=a; 
  7. y=b; 
  8. student.z=c; 
  9. }; 
  10. class program 
  11. public static void Main() 
  12. student obj=new student(100,200,300); 
  13. student obj2; 
  14. obj2.x=100; 
  15. obj2.y=200; 
  16. student.z=300; 

在使用类对象和函数使用时,使用的是引用传递,所以字段改变

在使用结构对象和函数使用时,是用的是值传递,所以字段没有改变

程序:

 

 
  1. using System; 
  2. class class_wsy 
  3. public int x; 
  4. struct struct_wsy 
  5. public int x; 
  6. class program 
  7. public static void class_t(class_wsy obj) 
  8. obj.x = 90; 
  9. public static void struct_t(struct_wsy obj) 
  10. obj.x = 90; 
  11. public static void Main() 
  12. class_wsy obj_1 = new class_wsy(); 
  13. struct_wsy obj_2 = new struct_wsy(); 
  14. obj_1.x = 100; 
  15. obj_2.x = 100; 
  16. class_t(obj_1); 
  17. struct_t(obj_2); 
  18. Console.WriteLine("class_wsy obj_1.x={0}",obj_1.x); 
  19. Console.WriteLine("struct_wsy obj_2.x={0}",obj_2.x); 
  20. Console.Read(); 

结果为:

 

 
  1. class_wsy obj_1.x=90 
  2. struct_wsy obj_2.x=100 
 

 

 

希望本文所述对大家的C#程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表