欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

private私有属性的访问

程序员文章站 2022-07-15 16:59:29
...

之前习惯性的为private关键字修饰的属性增加gettersetter方法,实现在类的外部进行属性访问,还有没有其它方式?如下:

public class Student {

    private String name;

    public Student(String name) {
        this.name = name;
    }

    public static String getName(Student student){
        return student.name;
    }
}

类内部可以通过类对象直接访问访问私有属性