Java教程

封装

本文主要是介绍封装,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

封装

#设计程序要追求“高内聚,低耦合”。高内聚就是类的具体数据细节自己操作,不允许外部干涉;低耦合就是暴露少量的方法给外部使用

#封装就是隐藏数据,禁止直接访问,应该通过接口来访问

#属性私有: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;
        }
    }
}
这篇关于封装的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!