#设计程序要追求“高内聚,低耦合”。高内聚就是类的具体数据细节自己操作,不允许外部干涉;低耦合就是暴露少量的方法给外部使用
#封装就是隐藏数据,禁止直接访问,应该通过接口来访问
#属性私有:get(获取这个数据)/set(给这个数据设置值)
package se.oop.DemoFz01; public class AppLication { public static void main(String[] args) { Studyent studyent = new Studyent(); studyent.setName("heqianfa"); System.out.println(studyent.getName()); studyent.setAge(120); System.out.println(studyent.getAge()); /* 封装的好处 -提高程序的安全性,保护数据 -隐藏代码的实现细节 -同一接口 -使系统维护更加便利 */ } }
package se.oop.DemoFz01; //类 public class Studyent { //private:属性私有 private String name;//名字 private int id;//学号 private char sex;//性别 private int age;//年龄 //提供一些可以操作这个属性的方法 //提供一些public 的get、srt方法 //快捷键:alt + insert //get:获得这个属性 public String getName(){ return this.name; } //set:给这个属性设置值 //注意:set方法必须设置形参 public void setName(String name) { this.name = name; } //alt + insert public int getId() { return id; } public void setId(int id) { this.id = id; } public char getSex() { return sex; } public void setSex(char sex) { this.sex = sex; } public int getAge() { return age; } //通过set方法规避不合法的操作 public void setAge(int age) { if (age>100 || age<0){ this.age = 3; }else{ this.age = age; } } }