封装以及代码

什么是封装

封装以及代码_第1张图片

代码示例

主函数


package oop;

import oop.demo03.Pet;
import oop.demo04.Student;
/*
封装的意义:
    1.提高程序的安全性,保护数据
    2.隐藏代码的实现细节
    3.统一接口
    4.系统可维护性增加了
 */
public class Application {
    public static void main(String[] args) {

        Student peng = new Student();
        peng.setName("爱学习的大鹏");
        System.out.println(peng.getName());

        peng.setAge(-1);
        System.out.println(peng.getAge());
    }
}

学生类

package oop.demo04;

//类         private:私有  给Studnet里面的属性封装
public class Student {
    //属性私有
    private String name;//姓名
    private int id;//学号
    private char sex;//性别
    private  int age;//年龄
    //提供一些方法来操作这个属性的方法!
    //提供一些public的get()和set()方法

    //get 获得这个数据
    public String getName() {
        return this.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 = 3;
        }else {
            this.age = age;
        }

    }
}

你可能感兴趣的:(java)