java_封装

基本介绍

面向对象编程有三大特征:封装、继承和多态。

封装介绍

封装的理解和好处

封装的实现步骤(三步)

案例

java 复制代码
package com.hspedu.encap;


public class Encapsulation01 {
    public static void main(String[] args) {
        // 如果要使用快捷键alt+r,需要先配置主类
        // 第一次,我们使用鼠标点击形式运算程序,后面就可以用了
        Person person = new Person();
        person.setName("Jackkkkkkkkkkkkkkku");
        person.setAge(30);
        person.setSalary(250000);

        System.out.println(person.info());
        System.out.println(person.getSalary());
    }
}
/*    那么在 java 中如何实现这种类似的控制呢?
        请大家看一个小程序(com.hspedu.encap: Encapsulation01.java), 不能随便查看人的年龄,工资等隐私,并对设置的年龄进行合理的验证。年龄合理就设置,否则给默认
        年龄, 必须在 1-120, 年龄, 工资不能直接查看 , name 的长度在 2-6 字符 之间*/
class Person {
    public String name; //名字公开
    private int age;// age私有化
    private double salary; //..

//    public void setName(String name) {
//        this.name = name;
//    }
//
//    public String getName() {
//
//    }

    //自己写setXxx 和 getXxx太慢了,我们使用快捷键
    // 然后根据要求完善我们的代码;
    public String getName() {
        return name;
    }

    public void setName(String name) {
        // 加入对数据的校验
        if(name.length() >= 2 && name.length() <= 6){
            this.name = name;
        } else {
            System.out.println("名字长度得在2-6个字符,默认名字");
            this.name = "无名人";
        }

    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        if(age >= 1 && age <= 120){
            this.age = age;
        } else {
            System.out.println("你设置的年龄不对!需要在(1-120),给默认年龄18");
            this.age = 18; //默认年龄
        }

    }

    public double getSalary() {
        //可以在这里增加对当前对象的权限判断
        return salary;
    }

    public void setSalary(double salary) {
        this.salary = salary;
    }

    // 写一个方法,返回属性信息
    public String info() {
        return "信息为 name=" + name + " age =" +age + " 薪水=" + salary;
    }
}

封装与构造器

java 复制代码
package com.hspedu.encap;


public class Encapsulation01 {
    public static void main(String[] args) {
        // 如果要使用快捷键alt+r,需要先配置主类
        // 第一次,我们使用鼠标点击形式运算程序,后面就可以用了
        Person person = new Person();
        person.setName("Jackkkkkkkkkkkkkkku");
        person.setAge(30);
        person.setSalary(250000);

        System.out.println(person.info());
        System.out.println(person.getSalary());

        //如果我们自己使用构造器指定属性
        Person smith = new Person("smith", 2000, 40000);
        System.out.println("======smith=======");
        System.out.println(smith.info());
    }
}
/*    那么在 java 中如何实现这种类似的控制呢?
        请大家看一个小程序(com.hspedu.encap: Encapsulation01.java), 不能随便查看人的年龄,工资等隐私,并对设置的年龄进行合理的验证。年龄合理就设置,否则给默认
        年龄, 必须在 1-120, 年龄, 工资不能直接查看 , name 的长度在 2-6 字符 之间*/
class Person {
    public String name; //名字公开
    private int age;// age私有化
    private double salary; //..

    // 构造器 alt + insert
    public Person() {

    }

    // 有三个属性的构造器 alt + insert
    public Person(String name, int age, double salary) {
//        this.name = name;
//        this.age = age;
//        this.salary = salary;
        //我们可以将set方法写在构造器中,这样仍然可以验证
        setName(name);
        setAge(age);
        setSalary(salary);
    }


    //自己写setXxx 和 getXxx太慢了,我们使用快捷键
    // 然后根据要求完善我们的代码;
    public String getName() {
        return name;
    }

    public void setName(String name) {
        // 加入对数据的校验
        if(name.length() >= 2 && name.length() <= 6){
            this.name = name;
        } else {
            System.out.println("名字长度得在2-6个字符,默认名字");
            this.name = "无名人";
        }

    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        if(age >= 1 && age <= 120){
            this.age = age;
        } else {
            System.out.println("你设置的年龄不对!需要在(1-120),给默认年龄18");
            this.age = 18; //默认年龄
        }

    }

    public double getSalary() {
        //可以在这里增加对当前对象的权限判断
        return salary;
    }

    public void setSalary(double salary) {
        this.salary = salary;
    }

    // 写一个方法,返回属性信息
    public String info() {
        return "信息为 name=" + name + " age =" +age + " 薪水=" + salary;
    }

}

练习

java 复制代码
package com.hspedu.encap;

public class Account {
    //为了封装,将3个属性设置为private;
    private String name;
    private double yue;
    private String password;

    //提供两个构造器
    public Account() {
    }

    public Account(String name, double yue, String password) {
        this.setName(name);
        this.setYue(yue);
        this.setPassword(password);
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        if (name.length() >= 2 && name.length() <= 4) {
            this.name = name;
        } else {
            System.out.println("你的名字不满足2,3,4位长度,给默认名字");
            this.name = "无名";
        }

    }

    public double getYue() {
        return yue;
    }

    public void setYue(double yue) {
        if (yue > 20) {
            this.yue = yue;
        } else {
            System.out.println("你的余额不足20!请及时充值,给默认值0");
            this.yue = 0;
        }
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        if (password.length() == 6) {
            this.password = password;
        } else {
            System.out.println("你的密码不是6位,请再次修改密码!默认密码为123456");
            this.password = "123456";
        }
    }

    // 显示账号信息
    public void showInfo() {
        System.out.println("账号信息 name= " + name + " 余额=" + yue + " 密码=" + password);
    }

    public String Info() {
        return "账号信息 name= " + name + " 余额=" + yue + " 密码=" + password;
    }
}
java 复制代码
package com.hspedu.encap;


public class AccountTest {
    public static void main(String[] args) {
        Account account = new Account();
        account.setName("jack");
        account.setYue(60);
        account.setPassword("666666");

        account.showInfo();

        // 使用构造器 修改对象的属性
        System.out.println("======smith======");
        Account smith = new Account("smith", 888, "345678");
        System.out.println(smith.Info());

    }
}
相关推荐
zjw_rp10 分钟前
Spring-AOP
java·后端·spring·spring-aop
Oneforlove_twoforjob22 分钟前
【Java基础面试题033】Java泛型的作用是什么?
java·开发语言
TodoCoder31 分钟前
【编程思想】CopyOnWrite是如何解决高并发场景中的读写瓶颈?
java·后端·面试
engchina39 分钟前
如何在 Python 中忽略烦人的警告?
开发语言·人工智能·python
向宇it39 分钟前
【从零开始入门unity游戏开发之——C#篇24】C#面向对象继承——万物之父(object)、装箱和拆箱、sealed 密封类
java·开发语言·unity·c#·游戏引擎
小蜗牛慢慢爬行41 分钟前
Hibernate、JPA、Spring DATA JPA、Hibernate 代理和架构
java·架构·hibernate
诚丞成1 小时前
计算世界之安生:C++继承的文水和智慧(上)
开发语言·c++
Smile灬凉城6661 小时前
反序列化为啥可以利用加号绕过php正则匹配
开发语言·php
lsx2024061 小时前
SQL MID()
开发语言
Dream_Snowar2 小时前
速通Python 第四节——函数
开发语言·python·算法