Java中使用类对现实世界中实体来进行描述,类经过实例化之后的产物对象,则可以用来表示现实中的实体,但是现实世界错综复杂,事物之间可能会存在一些关联,那在设计程序是就需要考虑。
比如:狗和猫,它们都是一个动物。
class Dog {
public String color;
public String name;
public int age;
public void eat() {
System.out.println(this.name + "正在吃。。。。");
}
public void barks() {
System.out.println(this.name + "正在叫。。。");
}
}
class Cat {
public String name;
public int age;
public void eat() {
System.out.println(this.name+ "正在吃。。。");
}
public void miaomiao() {
System.out.println(this.name+" 正在喵喵。。。");
}
}
public class Test {
public static void main(String[] args) {
Dog dog = new Dog();
dog.name = "旺财";
dog.eat();
dog.barks();
Cat cat = new Cat();
cat.name = "小咪咪";
cat.eat();
cat.miaomiao();
}
}
在上面狗类和猫类,存在name,age,还有eat方法重复,而面向对象思想中提出了继承的概念,专门用来进行共性抽取,实现代码复用。
继承(inheritance)机制:是面向对象程序设计使代码可以复用的最重要的手段,它允许程序员在保持原有类特 性的基础上进行扩展,增加新功能,这样产生新的类,称派生类。继承呈现了面向对象程序设计的层次结构, 体现了由简单到复杂的认知过程。继承主要解决的问题是:共性的抽取,实现代码复用。
比如:狗和猫都是动物,那么我们就可以将共性的内容进行抽取,然后采用继承的思想来达到共用。
在Java中如果要表示类之间的继承关系,需要借助extends关键字,具体如下:
修饰符 class 子类 extends 父类 {
// ...
}
class Animal {
public String name;
public int age;
public void eat() {
System.out.println(this.name + "正在吃。。。。");
}
}
class Dog extends Animal{
public String color;
public void barks() {
System.out.println(this.name + "正在叫。。。");
}
}
class Cat extends Animal{
public void miaomiao() {
System.out.println(this.name+" 正在喵喵。。。");
}
}
public class Test {
public static void main(String[] args) {
Dog dog = new Dog();
dog.name = "旺财";
dog.eat();
dog.barks();
Cat cat = new Cat();
cat.name = "小咪咪";
cat.eat();
cat.miaomiao();
}
}
注意:
由于设计不好,或者因场景需要,子类和父类中可能会存在相同名称的成员,如果要在子类方法中访问父类同名成员时,该如何操作?直接访问是无法做到的,Java提供了super关键字,该关键字主要作用:在子类方法中访问父类的成员。
1.super表示的是 从父类继承过来的数据的引用。
2.super的出现 ,极大的提高了代码的可读性。
注意:
class base {
public int a = 1;
public int b = 2;
}
class Derive extends base {
public int a = 10;
public int c = 3;
public void method() {
// 优先访问子类的 子类没有 访问父类的
System.out.println(this.a); //子类和父类都有 优先访问子类的
System.out.println(super.a); //如果想要访问父类继承下来的 使用super.
System.out.println(this.b); //访问子类的
System.out.println(super.b); //访问从父类继承下来的
System.out.println(this.c); //访问子类自己的
}
}
public class Test2 {
public static void main(String[] args) {
Derive derive = new Derive();
derive.method();
}
}
注意:
class base {
public int a = 1;
public int b = 2;
public void test() {
System.out.println("Base::test");
}
}
class Derive extends base {
public int a = 10;
public int c = 3;
public void test() {
System.out.println("Derive::test()");
}
public void test2() {
System.out.println("Derive::test2()");
}
public void test(int a) {
System.out.println(a);
}
public void method() {
test(); //优先访问子类自己的test
super.test(); // 访问父类的
test2();
test(10);
/*// 优先访问子类的 子类没有 访问父类的
System.out.println(this.a); //子类和父类都有 优先访问子类的
System.out.println(super.a); //如果想要访问父类继承下来的 使用super.
System.out.println(this.b); //访问子类的
System.out.println(super.b); //访问从父类继承下来的
System.out.println(this.c); //访问子类自己的*/
}
}
public class Test2 {
public static void main(String[] args) {
Derive derive = new Derive();
derive.method();
}
}
子类继承了父类之后 一定先帮助父类进行成员的初始化 – 》 使用构造方法进行初始化。
产生子类对象的时候, 父类的成员就要初始化好。
不然就会编译报错如下:
class Animal {
public String name;
public int age;
public void eat() {
System.out.println(this.name + "正在吃。。。。");
}
public Animal(String name, int age) {
this.name = name;
this.age = age;
}
}
class Dog extends Animal{
public String color;
public Dog(String name,int age,String color) {
// 调用父类的 带有2个参数的构造方法 来初始化父类当中成员
// 必须在第一行 所以super()和this() 是不能同时存在的
super(name,age);
this.color = color;
}
public void barks() {
System.out.println(this.name + "正在叫。。。");
}
}
class Cat extends Animal{
public Cat() {
super("咪咪",10);
}
public void miaomiao() {
System.out.println(this.name+" 正在喵喵。。。");
}
}
public class Test {
public static void main(String[] args) {
Dog dog = new Dog("旺财",10,"白色");
dog.eat();
Cat cat = new Cat();
cat.eat();
}
}
在子类构造方法中,并没有写任何关于基类构造的代码,但是在构造子类对象时,先执行基类的构造方法,然后执行子类的构造方法,因为:子类对象中成员是有两部分组成的,基类继承下来的以及子类新增加的部分 。父子父子肯定是先有父再有子,所以在构造子类对象时候 ,先要调用基类的构造方法,将从基类继承下来的成员构造完整
,然后再调用子类自己的构造方法,将子类自己新增加的成员初始化完整 。
注意:
super和this都可以在成员方法中用来访问:成员变量和调用其他的成员函数,都可以作为构造方法的第一条语句,那他们之间有什么区别呢?
【相同点】
【不同点】
实例代码块和静态代码块。在没有继承关系时的执行顺序。
class Person {
public String name;
public int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
System.out.println("构造方法执行");
}
{
System.out.println("实例代码块执行");
}
static {
System.out.println("静态代码块执行");
}
}
public class TestDemo {
public static void main(String[] args) {
Person person1 = new Person("bit",10);
System.out.println("============================");
Person person2 = new Person("gaobo",20);
}
}
在继承的代码里:
class Animal {
public String name;
public int age;
static {
System.out.println("Animal::static{}静态代码块");
}
{
System.out.println("Animal:: { }实列代码块");
}
public Animal(String name, int age) {
this.name = name;
this.age = age;
System.out.println("Animal String name, int age 构造方法代码块");
}
public void eat() {
System.out.println(this.name + "正在吃。。。。");
}
}
class Dog extends Animal{
public String color;
static {
System.out.println("Dog::static{}静态代码块");
}
{
System.out.println("Dog:: { }实列代码块");
}
public Dog(String name,int age,String color) {
// 调用父类的 带有2个参数的构造方法 来初始化父类当中成员
// 必须在第一行 所以super()和this() 是不能同时存在的
super(name,age);
this.color = color;
System.out.println("Dog String name, int age 构造方法代码块");
}
public void barks() {
System.out.println(this.name + "正在叫。。。");
}
}
class Cat extends Animal{
public Cat() {
super("咪咪",10);
}
public void miaomiao() {
System.out.println(this.name+" 正在喵喵。。。");
}
}
public class Test {
public static void main(String[] args) {
Dog dog = new Dog("旺财",10,"白色");
System.out.println("=========");
Dog dog1 = new Dog("旺财",10,"白色");
}
}
结论:
在类和对象章节中,为了实现封装特性,Java中引入了访问限定符,主要限定:类或者类中成员能否在类外或者其他包中被访问。
package demo1;
//同一包中同一类
public class TestDemo1 {
protected int a;
public static void main(String[] args) {
TestDemo1 testDemo1 = new TestDemo1();
System.out.println(testDemo1.a);
}
}
// 结果为0
package demo1;
//同一包中不同的类
public class TestDemo2 {
public static void main(String[] args) {
TestDemo1 testDemo1 = new TestDemo1();
System.out.println(testDemo1.a);
}
}
// 结果为0
package demo2;
import demo1.TestDemo1;
// 不同包中的子类 使用super访问
public class Test extends TestDemo1 {
public void func() {
/* TestDemo1 testDemo1 = new TestDemo1();
System.out.println(testDemo1.a);*/
System.out.println(super.a);
}
public static void main(String[] args) {
}
}
// 结果为0
另外在不同包中的非子类不能访问。
1.修饰变量或者字段,表示常量(不能被修改)
final int a = 10; //常量 不能再修改了
//a = 20;
System.out.println(a);
2.修饰类:表示该类不能被继承
3.final还可以修饰方法,代表当前方法不能被重写
和继承类似, 组合也是一种表达类之间关系的方式, 也是能够达到代码重用的效果。组合并没有涉及到特殊的语法(诸如 extends 这样的关键字), 仅仅是将一个类的实例作为另外一个类的字段。
继承表示对象之间是is-a的关系,比如:狗是动物,猫是动物
组合表示对象之间是has-a的关系,比如:学校
学校和其学生、老师等的关系就应该是组合,因为学校是有这些部分组成的。
class Student2 {
}
class Teacher {
}
class School {
public Student2[] student2s = new Student2[10];
public Teacher[] teachers = new Teacher[5];
}
public class TestPart {
}
组合和继承都可以实现代码复用,应该使用继承还是组合,需要根据应用场景来选择,一般建议:能用组合尽量用组合。