private私有属性的访问
程序员文章站
2022-07-15 16:59:29
...
之前习惯性的为private关键字修饰的属性增加getter、setter方法,实现在类的外部进行属性访问,还有没有其它方式?如下:
public class Student {
private String name;
public Student(String name) {
this.name = name;
}
public static String getName(Student student){
return student.name;
}
}
类内部可以通过类对象直接访问访问私有属性。