私有的属性,公开的方法。
封装的步骤:
声明私有(private)的属性;
声明公开(public)的geter和seter方法;
//封装就是把属性封装起来不让别的类使用, //那不能让别的类访问的属性就是私有的属性。 class Person{ private String name; private int age; //赋值的方法 public void setName(String name) { this.name = name; } public void setAge(int age) { this.age = age; } //获得属性值 public String getName() { return name; } public int getAge() { return age; } } public class Test { public static void main(String[] args) { Person p = new Person(); p.setName("tom"); p.setAge(10); p.getName(); p.getAge(); System.out.println(p.getName()); System.out.println(p.getAge()); } }