封装、继承
一、封装
1.高内聚,低耦合
2.属性私有,get/set
二、继承
1.java类中只有单继承,没有多继承
2.关键字extends,是类与类之间的关系
3.public》protected》defalut》private
4.Java中,所有的类都默认继承Object类
5.构造函数:先调用父类的构造函数,再调用子类的构造函数;
析构函数:先调用子类的析构函数,再调用父类的析构函数
6.super注意点:(1)super调用父类的构造方法,必须在构造方法的第一行;
(2)super必须只能出现在子类的方法或构造方法中
(3)super和this不能同时调用构造方法
VS this:
代表的对象不同:
this:本身调用者这个对象
super:代表父类对象的引用
前提
this:没有继承,也可以使用
super:只能在继承条件下才能使用
构造方法
this()本类的构造
super()父类的构造
eg:
package com.oop.DemoThree;
public class Person {
public Person(){
System.out.println("Person构造执行了");
}
protected String name="Person";
public void print(){
System.out.println("Person");
}
}
package com.oop.DemoThree;
public class Student extends Person {
public Student(){
//隐藏代码:调用父类的无参构造
super();
System.out.println("Student构造执行了");
}
private String name = "Student";
public void print(){
System.out.println("Student");
}
public void test1(){
print();
this.print();
super.print();
}
public void test(String name){
System.out.println(name);
System.out.println(this.name);
System.out.println(super.name);
}
}
package com.oop.DemoTwo;
import com.oop.DemoThree.Student;
//一个项目应该只存在一个main方法
public class Application {
public static void main(String[] args) {
Student student = new Student();
//student.test1();
//student.test("test");
}
}