首页 > 代码库 > Java基础04 封装与接口(转载)
Java基础04 封装与接口(转载)
封装与接口
对象成员的封装
Java通过三个关键字来控制对象的成员的外部可见性(visibility): public, private, protected。
- public: 该成员外部可见,即该成员为接口的一部分
- private: 该成员外部不可见,只能用于内部使用,无法从外部访问。
- protected:涉及继承
public static void main(String[] args){
Human aPerson = new Human(160);
System.out.println(aPerson.getHeight());
aPerson.growHeight(170);
System.out.println(aPerson.getHeight());
aPerson.repeatBreath(100);
}
}
class Human{
/**
* constructor
*/
public Human(int h){
this.height = h;
System.out.println("I‘m born");
}
/**
* accessor
*/
public int getHeight(){
return this.height;
}
/**
* mutator
*/
public void growHeight(int h){
this.height = this.height + h;
}
private void breath(){
System.out.println("hu..hu..");
}
public void repeatBreath(int rep){
int i;
for(i = 0 ; i<rep ; i++){
this.breath();
}
}
private int height ;
}
内部方法并不受封装的影响。Human的内部方法可以调用任意成员,即使是设置为private的height和breath()
外部方法只能调用public成员。当我们在Human外部时,比如Test中,我们只能调用Human中规定为public的成员,而不能调用规定为private的成员。
通过封装,Human类就只保留了下面几个方法作为接口:
- getHeight()
- growHeight()
- repBreath()
如果我们从main中强行调用height:
System.out.println(aPerson.height);
将会有如下错误提示:
Test.java:6: height has private access in Human
System.out.println(aPerson.height);
^
1 error
Beep, 你触电了! 一个被说明为private的成员,不能被外部调用。
在Java的通常规范中,表达状态的数据成员(比如height)要设置成private。对数据成员的修改要通过接口提供的方法进行(比如getHeight()和growHeight())。这个规范起到了保护数据的作用。用户不能直接修改数据,必须通过相应的方法才能读取和写入数据。类的设计者可以在接口方法中加入数据的使用规范。
类的封装
在一个.java文件中,有且只能有一个类带有public关键字,比如上面的Test类。所以,从任意其他类中,我们都可以直接调用该类。Human类没有关键字。更早之前,我们对象的成员也没有关键字。这种没有关键字的情况也代表了一种可见性,我将在包(package)的讲解中深入。