编程语言
首页 > 编程语言> > 封装及其作用Java

封装及其作用Java

作者:互联网

封装

作用

1.提高程序的安全性,保护数据

2.隐藏代码的实现细节

3.统一接口

4.系统可维护性增加了

public class Student {
//属性私有
    private String name;//    名字

    private int id;//    学号
    private int age;

    private char sex;//    性别

//提供一些可以操作这个属性的方法
//    提供public的get,set方法
//get 获取这个数据
    public String getName() {
        return name;
    }
//set给这个数据设值
    public void setName(String name) {
        this.name = name;
    }
    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;
    }
    public void setAge(int age) {
        if (age>120||age<0){
            this.age = 1;
        }else {
            this.age = age;
        }

    }
}


public class Appliocation2 {
    public static void main(String[] args) {
        Student student=new Student();
//        student.name不行
        student.setName("xiaoming");
        System.out.println(student.getName());

        student.setAge(180);
        System.out.println(student.getAge());
        student.setAge(4);
        System.out.println(student.getAge());
    }

}

标签:封装,name,int,及其,sex,age,id,Java,public
来源: https://www.cnblogs.com/zacjrj/p/15925278.html