C#的get和set
代码如下publicclassStudent{stringname;intage;publicstringName{get{returnname;}set{name=va...
代码如下
public class Student {
string name;
int age;
public string Name {
get { return name; }
set { name = value; }
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
类Student包含name和age,其中name可以通过属性获得或者设置,age可以通过方法getAge()和setAge()获得和设置,这两种方法那种更常用,优缺点是啥? 展开
public class Student {
string name;
int age;
public string Name {
get { return name; }
set { name = value; }
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
类Student包含name和age,其中name可以通过属性获得或者设置,age可以通过方法getAge()和setAge()获得和设置,这两种方法那种更常用,优缺点是啥? 展开
2个回答
展开全部
1,你代码中 getAge 和setAge 两个方法 和 public int Age{set;get;}是一模一样的效果
2、set是属性的写,get是读,需求决定了写法。
比如希望只读,就要分开写了
private int age;
public int Age{
get { return age; }
private set { age= value; } //只能在类内部写入
}
而希望暴漏整个属性则可以简单的写
public int Age{set;get;}
常用的就是以上两种。
2、set是属性的写,get是读,需求决定了写法。
比如希望只读,就要分开写了
private int age;
public int Age{
get { return age; }
private set { age= value; } //只能在类内部写入
}
而希望暴漏整个属性则可以简单的写
public int Age{set;get;}
常用的就是以上两种。
更多追问追答
追问
意思就是没差咯?因为如果设置age只读,只需提供
public int getAge(){
return age;
}
不提供setAge即可
追答
有差。
你不提供这个属性的set方法,你在类的内部都无法更改这个属性的值。
而private set 这种写法是可以在内部更改值,外部只读。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询