既然您正在使用C#,并假设您使用的是.NET 3.5,那么您的类可能会看起来像这样:
public class Student { public int Grade { get; set; } public string Teacher { get; set; } }
Grade和Teacher是自动属性,大致相当于Java中的getter和setter,它们就是方法.C#中的属性本质上是获取和设置类的本地成员的快捷方式.
您对上述类的使用将如下所示:
public class Program { // creates a new Student object with the properties Grade and Teacher set. Student s = new Student() { Grade = 100, Teacher = "John Smith" } Console.Write(s.Grade); // outputs 100 Console.Write(s.Teacher); // outputs John Smith }
这是你在找什么?
既然您正在使用C#,并假设您使用的是.NET 3.5,那么您的类可能会看起来像这样:
public class Student { public int Grade { get; set; } public string Teacher { get; set; } }
Grade和Teacher是自动属性,大致相当于Java中的getter和setter,它们就是方法.C#中的属性本质上是获取和设置类的本地成员的快捷方式.
您对上述类的使用将如下所示:
public class Program { // creates a new Student object with the properties Grade and Teacher set. Student s = new Student() { Grade = 100, Teacher = "John Smith" } Console.Write(s.Grade); // outputs 100 Console.Write(s.Teacher); // outputs John Smith }
这是你在找什么?