C#中如何对结构体进行操作

C#中如何对结构体进行操作
2024-12-12 20:45:52
推荐回答(3个)
回答1:

结构体和类比较相似,但是结构体是值类型,而类是引用类型。
调用结构体你不用去new一个结构体。比如你像楼上定义了个struct student
直接student stu;就可以拿到stu对象,
不必student stu = new student();这样去拿。

但是如果是类,就必须student stu = new student();才可以获得对象。

在讲结构体作为参数传给其他程序的时候,结构的属性值是不会跟着改变的。
但是,如果是类的话,类的属性会变化。

回答2:

1.定义结构体
struct student
{
string name ;
int age;
string school;
}
2.使用结构体
student stu = new student();
student[] stus=new student[5];
stu.name = "张三";
stu.age = 22;
stu.hometown = "江苏徐州";

stus[0].name = "李四";
stus[0].age = 23;
stus[0].hometown = "湖南岳阳";

stus[1] = stu;

回答3:

结构不存在new关键字谢谢