我想你想要这样的东西:public class Person { private int age; //public method to get the age variable public int getAge(){ return this.age } //public method to set the age variable public void setAge(int age){ this.age = age; }}您只是在对象实例上调用这种方法。这种方法特别有用,特别是在设置某些东西会产生副作用的情况下。例如,如果您想对某些事件做出反应,例如: public void setAge(int age){ this.age = age; double averageCigarettesPerYear = this.smokedCigarettes * 1.0 / age; if(averageCigarettesPerYear >= 7300.0) { this.eventBus.fire(new PersonSmokesTooMuchEvent(this)); } }当然,如果有人忘记打电话给setAge(int)他应该去的地方并age直接使用进行设置,这将很危险this.age。