set 方法 设置值
get方法 取出值
例子:
public class Method{
public static void main(String[] args) {
MethodSetGet MSG=new MethodSetGet();
//设值
MSG.setName("我是【18334705181】学员");
//取值
System.out.println(MSG.getName());
}
}
class MethodSetGet{
private String name;//封装属性
public void setName(String name){//设置属性值
this.name=name;
}
public String getName(){//获取属性值
return name;
}
|