java基础(11)--封装

一、java面向对象三大特别:
1、封装
2、继承
3、多态
 
二、封装的作用
1、属性私有化(private)
2、对外提供简单的入口
如公开的set()与get()方法,并且都不带static
 
三、举例说明
public class TestBase11Encapsulation {
    private int age;
    public static void main(String[] args) {
        TestBase11Encapsulation mytest=new TestBase11Encapsulation();
        mytest.setAge(15);
        System.out.println(mytest.getAge());
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }
}
 
posted @ 2020-07-26 23:56  Mrwhite86  阅读(213)  评论(0编辑  收藏  举报