标题: 静态变量可以写setget方法吗 [打印本页] 作者: fyg408224345 时间: 2015-6-12 21:14 标题: 静态变量可以写setget方法吗 静态变量可以写setget方法吗?下面是我写的代码。
class Person{
//属性
private String name;
static int age;
//构造器
public Person(){}
public Person(String name, int age){
this.name = name;
this.age = age;
}
//setget方法
public void setName(String name){
this.name = name;
}
public String getName(){
return name;
}
public /*static*/ void setAge(int age){ //这里如果不去掉static的话会报错:无法从静态上下文中引用非静态变量 this
this.age = age; this.age = age
} ^
public static int getAge(){
return age;
}
//方法
public void eat(){
}