Java语法学习六之继承和多态(重要)

继承

为什么需要继承

Java中使用类对现实世界中实体来进行描述,类经过实例化之后的产物对象,则可以用来表示现实中的实体,但是现实世界错综复杂,事物之间可能会存在一些关联,那在设计程序是就需要考虑。
比如:狗和猫,它们都是一个动物。

使用Java语言来进行描述,就会设计出:

class Dog{public String name;public int age;public String color;public void eat(){System.out.println(this.name+"正在吃饭!");}public void bark(){System.out.println(this.name+"正在汪汪汪!");}
}class Cat{public String name;public int age;public String color;public void eat(){System.out.println(this.name+"正在吃饭!");}public void bark(){System.out.println(this.name+"正在喵喵喵!");}}
public class Test2 {public static void main(String[] args) {Dog dog=new Dog();dog.name="阿黄";dog.age=1;dog.color="黄色";dog.eat();dog.bark();Cat cat=new Cat();cat.name="小花";cat.age=2;cat.color="白色";cat.eat();cat.bark();}
}

通过观察上述代码会发现,猫和狗的类中存在大量重复,如下所示:

那能否将这些共性抽取呢?面向对象思想中提出了继承的概念,专门用来进行共性抽取,实现代码复用。
 

继承概念

继承(inheritance)机制:是面向对象程序设计使代码可以复用的最重要的手段,它允许程序员在保持原有类特 性的基础上进行扩展增加新功能,这样产生新的类,称派生类。继承呈现了面向对象程序设计的层次结构, 体现了由简单到复杂的认知过程。继承主要解决的问题是:共性的抽取,实现代码复用。
例如:狗和猫都是动物,那么我们就可以将共性的内容进行抽取,然后采用继承的思想来达到共用。

上述图示中,Dog和Cat都继承了Animal类,其中:Animal类称为父类/基类或超类,Dog和Cat可以称为Animal的子类/派生类,继承之后,子类可以复用父类中成员,子类在实现时只需关心自己新增加的成员即可。
从继承概念中可以看出继承最大的作用就是:实现代码复用,还有就是来实现多态(后序讲)。
 

继承的语法

在Java中如果要表示类之间的继承关系,需要借助extends关键字,具体如下:

修饰符 class 子类 extends 父类 {
// ...
}

package demo1;class Animal{public String name;public int age;public String color;public void eat(){System.out.println(this.name+"正在吃饭!");}}
class Dog  extends Animal{public void bark(){System.out.println(this.name+"正在汪汪汪!");}
}class Cat extends Animal{public void bark(){System.out.println(this.name+"正在喵喵喵!");}}
public class Test2 {public static void main(String[] args) {Dog dog=new Dog();dog.name="阿黄";dog.age=1;dog.color="黄色";dog.eat();dog.bark();Cat cat=new Cat();cat.name="小花";cat.age=2;cat.color="白色";cat.eat();cat.bark();}
}

注意:
1. 子类会将父类中的成员变量或者成员方法继承到子类中了
2. 子类继承父类之后,必须要新添加自己特有的成员,体现出与基类的不同,否则就没有必要继承了
 

父类成员访问

子类中访问父类的成员变量
 

1. 子类和父类不存在同名成员变量
 

package demo1;/*如果子类有,优先访问子类的,
子类没有,然后才去看父类有没有
父类也没有,那就会报错
* */
class Base{public int a=1;public int b=2;
}
class Derived extends Base{public int c=3;public void test(){System.out.println(a);System.out.println(b);System.out.println(c);}
}

在子类方法中 或者 通过子类对象访问成员时:

如果访问的成员变量子类中有,优先访问自己的成员变量。
如果访问的成员变量子类中无,则访问父类继承下来的,如果父类也没有定义,则编译报错。
如果访问的成员变量与父类中成员变量同名,则优先访问自己的。
成员变量访问遵循就近原则,自己有优先自己的,如果没有则向父类中找。

2. 子类和父类成员变量同名

class Base{public int a=1;public int b=2;
}
class Derived extends Base{public int a=100;public int c=3;public void test(){System.out.println(a);System.out.println(b);System.out.println(c);}
}
public class Test3{public static void main(String[] args) {Derived derived=new Derived();derived.test();}
}

子类中访问父类的成员方法
 

1. 成员方法名字不同
 

package demo1;class Base2{public void testA(){System.out.println("testA()");}}class Derived2 extends Base2{public void testA(){System.out.println("Derived2::testA()");}public void testB(){System.out.println("testB()");}public void testC(){this.testA();this.testB();}
}public class Test4 {public static void main(String[] args) {Derived2 derived2=new Derived2();derived2.testC();}
}

总结:成员方法没有同名时,在子类方法中或者通过子类对象访问方法时,则优先访问自己的,自己没有时到父类中找,如果父类中也没有则报错。

2. 成员方法名字相同
 

public class Base {
public void methodA(){
System.out.println("Base中的methodA()");
}
public void methodB(){
System.out.println("Base中的methodB()");
}
}
public class Derived extends Base{
public void methodA(int a) {
System.out.println("Derived中的method(int)方法");
}
public void methodB(){
System.out.println("Derived中的methodB()方法");
}
public void methodC(){
methodA(); // 没有传参,访问父类中的methodA()
methodA(20); // 传递int参数,访问子类中的methodA(int)
methodB(); // 直接访问,则永远访问到的都是子类中的methodB(),基类的无法访问到
}
}

【说明】
通过子类对象访问父类与子类中不同名方法时,优先在子类中找,找到则访问,否则在父类中找,找到则访问,否则编译报错。
通过派生类对象访问父类与子类同名方法时,如果父类和子类同名方法的参数列表不同(重载),根据调用方法适传递的参数选择合适的方法访问,如果没有则报错;


问题:如果子类中存在与父类中相同的成员时,那如何在子类中访问父类相同名称的成员呢?
 

super关键字

由于设计不好,或者因场景需要,子类和父类中可能会存在相同名称的成员,如果要在子类方法中访问父类同名成员时,该如何操作?直接访问是无法做到的,Java提供了super关键字,该关键字主要作用:在子类方法中访问父类的成员。

package demo1;class Base2{public void testA(){System.out.println("testA()");}}class Derived2 extends Base2{public void testA(){System.out.println("Derived2::testA()");}public void testB(){System.out.println("testB()");}public void testC(){this.testA();super.testA();this.testB();}
}public class Test4 {public static void main(String[] args) {Derived2 derived2=new Derived2();derived2.testC();}
}


 

在子类方法中,如果想要明确访问父类中成员时,借助super关键字即可。
【注意事项】
1. 只能在非静态方法中使用

2. 在子类方法中,访问父类的成员变量和方法。


super的其他用法在后文中介绍。
 

子类构造方法

父子父子,先有父再有子,即:子类对象构造时,需要先调用基类构造方法,然后执行子类的构造方法。

public class Base {
public Base(){
System.out.println("Base()");
}}
public class Derived extends Base{
public Derived(){
// super(); // 注意子类构造方法中默认会调用基类的无参构造方法:super(),
// 用户没有写时,编译器会自动添加,而且super()必须是子类构造方法中第一条语句,
// 并且只能出现一次
System.out.println("Derived()");
}}
public class Test {
public static void main(String[] args) {
Derived d = new Derived();
}
}
//结果打印:
//Base()
//Derived()

在子类构造方法中,并没有写任何关于基类构造的代码,但是在构造子类对象时,先执行基类的构造方法,然后执行子类的构造方法,因为:子类对象中成员是有两部分组成的,基类继承下来的以及子类新增加的部分 。父子父子肯定是先有父再有子,所以在构造子类对象时候 ,先要调用基类的构造方法,将从基类继承下来的成员构造完整,然后再调用子类自己的构造方法,将子类自己新增加的成员初始化完整。

注意:
1. 若父类显式定义无参或者默认的构造方法,在子类构造方法第一行默认有隐含的super()调用,即调用基类构造方法。
2. 如果父类构造方法是带有参数的,此时需要用户为子类显式定义构造方法,并在子类构造方法中选择合适的父类构造方法调用,否则编译失败。
3. 在子类构造方法中,super(...)调用父类构造时,必须是子类构造函数中第一条语句。
4. super(...)只能在子类构造方法中出现一次,并且不能和this同时出现。

package demo1;
//抽取类的共性
class Animal{public String name;public int age;public String color;public Animal(String name, int age, String color) {this.name = name;this.age = age;this.color = color;System.out.println("Animal(String,int,String)");}public void eat(){System.out.println(this.name+"正在吃饭!");}
}
//is-a的关系
class Dog extends Animal{public Dog(){super("haha",10,"黄色");System.out.println("Dog()");}public void bark(){System.out.println(this.name+"正在汪汪汪!");}
}
class Cat extends Animal{public Cat(String name, int age, String color) {//可通过快捷键super(name, age, color);System.out.println("Cat(String,int,String)");}public void miaomaio(){System.out.println(this.name+"正在喵喵喵!");}
}
public class Test2 {public static void main(String[] args) {Dog dog=new Dog();dog.eat();dog.bark();System.out.println();Cat cat=new Cat("小花",2,"白色");cat.eat();cat.miaomaio();}
}

 

super和this

super和this都可以在成员方法中用来访问:成员变量和调用其他的成员函数,都可以作为构造方法的第一条语句,那他们之间有什么区别呢
【相同点】
1. 都是Java中的关键字
2. 只能在类的非静态方法中使用,用来访问非静态成员方法和字段
3. 在构造方法中调用时,必须是构造方法中的第一条语句,并且不能同时存在
【不同点】
1. this是当前对象的引用,当前对象即调用实例方法的对象,super相当于是子类对象中从父类继承下来部分成员的引用

2. 在非静态成员方法中,this用来访问本类的方法和属性,super用来访问父类继承下来的方法和属性
3. 在构造方法中:this(...)用于调用本类构造方法,super(...)用于调用父类构造方法,两种调用不能同时在构造方法中出现
4. 构造方法中一定会存在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);
}}

执行结果:

静态代码块执行
实例代码块执行
构造方法执行
============================
实例代码块执行
构造方法执行

1. 静态代码块先执行,并且只执行一次,在类加载阶段执行
2. 当有对象创建时,才会执行实例代码块,实例代码块执行完成后,最后构造方法执行

【继承关系上的执行顺序】

class Person {
public String name;
public int age;public Person(String name, int age) {
this.name = name;
this.age = age;
System.out.println("Person:构造方法执行");
}{
System.out.println("Person:实例代码块执行");
}static {
System.out.println("Person:静态代码块执行");
}}class Student extends Person{
public Student(String name,int age) {
super(name,age);
System.out.println("Student:构造方法执行");
}{
System.out.println("Student:实例代码块执行");
} static {
System.out.println("Student:静态代码块执行");
}}
public class TestDemo4 {
public static void main(String[] args) {
Student student1 = new Student("张三",19);
System.out.println("===========================");
Student student2 = new Student("gaobo",20);
}public static void main1(String[] args) {
Person person1 = new Person("bit",10);
System.out.println("============================");
Person person2 = new Person("gaobo",20);
}
}

 执行结果:

erson:静态代码块执行
Student:静态代码块执行
Person:实例代码块执行
Person:构造方法执行
Student:实例代码块执行
Student:构造方法执行
===========================
Person:实例代码块执行
Person:构造方法执行
Student:实例代码块执行
Student:构造方法执行

通过分析执行结果,得出以下结论:
1、父类静态代码块优先于子类静态代码块执行,且是最早执行
2、父类实例代码块和父类构造方法紧接着执行
3、子类的实例代码块和子类构造方法紧接着再执行
4、第二次实例化子类对象时,父类和子类的静态代码块都将不会再执行

小练习

package demo1;
//抽取类的共性
class Animal{public String name;public int age;public String color;static{System.out.println("Animal::static{}");}{System.out.println("Animal::{}");}public Animal(String name, int age, String color) {this.name = name;this.age = age;this.color = color;System.out.println("Animal(String,int,String)");}public void eat(){System.out.println(this.name+"正在吃饭!");}
}
//is-a的关系
class Dog extends Animal{static{System.out.println("Dog::static{}");}{System.out.println("Dog::{}");}public Dog(){super("haha",10,"黄色");//虽然调用了父类的构造方法//但是并没有产生父类对象,此时只是帮你进行初始化父类的成员System.out.println("Dog()");}public void bark(){System.out.println(this.name+"正在汪汪汪!");}
}
class Cat extends Animal{static{System.out.println("Cat::static{}");}{System.out.println("Cat::{}");}public Cat(String name, int age, String color) {//可通过快捷键super(name, age, color);System.out.println("Cat(String,int,String)");}public void miaomaio(){System.out.println(this.name+"正在喵喵喵!");}
}
public class Test2 {public static void main(String[] args) {Dog dog1=new Dog();Dog dog2=new Dog();
//        dog.eat();
//        dog.bark();
//        System.out.println();
//        Cat cat=new Cat("小花",2,"白色");
//        cat.eat();
//        cat.miaomaio();}
}

答案:142356 2356 

protected关键字

在类和对象章节中,为了实现封装特性,Java中引入了访问限定符,主要限定:类或者类中成员能否在类外或者其他包中被访问。
 

继承方式

在现实生活中,事物之间的关系是非常复杂,灵活多样,比如:

但在Java中只支持以下几种继承方式:

注意:Java中不支持多继承。

时刻牢记, 我们写的类是现实事物的抽象. 而我们真正在公司中所遇到的项目往往业务比较复杂, 可能会涉及到 一系列复杂的概念, 都需要我们使用代码来表示, 所以我们真实项目中所写的类也会有很多. 类之间的关系也会 更加复杂.

但是即使如此, 我们并不希望类之间的继承层次太复杂. 一般我们不希望出现超过三层的继承关系. 如果继承层 次太多, 就需要考虑对代码进行重构了.

如果想从语法上进行限制继承, 就可以使用 final 关键字

final关键字

如果需要控制继承,此时这个类可以被final修饰,意味着:当前类不可以继承,此时这个类叫做密封类。

final关键可以用来修饰变量、成员方法以及类。

1. 修饰变量或字段,表示常量(即不能修改)

final int a = 10;

a = 20;

 // 编译出错

2. 修饰类:表示此类不能被继承

final public class Animal {  

...

}

public class Bird extends Animal {  

...

}

// 编译出错

Error:(3, 27) java: 无法从最终com.bit.Animal进行继承

我们平时是用的 String 字符串类, 就是用 final 修饰的, 不能被继承.

3. 修饰方法:表示该方法不能被重写(后序介绍)

继承与组合

和继承类似, 组合也是一种表达类之间关系的方式, 也是能够达到代码重用的效果。组合并没有涉及到特殊的语法 (诸如 extends 这样的关键字), 仅仅是将一个类的实例作为另外一个类的字段。

继承表示对象之间是is-a的关系,比如:狗是动物,猫是动物

组合表示对象之间是has-a的关系,比如:汽车

汽车和其轮胎、发动机、方向盘、车载系统等的关系就应该是组合,因为汽车是有这些部件组成的。

// 轮胎类
class Tire{// ...
}// 发动机类
class Engine{// ...
}// 车载系统类
class VehicleSystem{// ...
}class Car{private Tire tire;          // 可以复用轮胎中的属性和方法private Engine engine;      // 可以复用发动机中的属性和方法private VehicleSystem vs;   // 可以复用车载系统中的属性和方法// ...
}// 奔驰是汽车
class Benz extend Car{// 将汽车中包含的:轮胎、发送机、车载系统全部继承下来
}

组合和继承都可以实现代码复用,应该使用继承还是组合,需要根据应用场景来选择,一般建议:能用组合尽量用组合。

继承和组合

多态

多态的概念

多态的概念:通俗来说,就是多种形态,具体点就是去完成某个行为,当不同的对象去完成时会产生出不同的状态。

总的来说:同一件事情,发生在不同对象身上,就会产生不同的结果。

多态实现条件

在java中要实现多态, 必须要满足如下几个条件, 缺一不可:

1. 必须在继承体系下

2. 子类必须要对父类中方法进行重写

3. 通过父类的引用调用重写的方法

多态体现:在代码运行时, 当传递不同类对象时, 会调用对应类中的方法 。

public class Animal {
String name;
int age;


public Animal(String name, int age){
this.name = name;
this.age = age;
}


public void eat(){
System.out.println(name + "吃饭");
}


}
public class Cat extends Animal{
public Cat(String name, int age){
super(name, age);
}@
Override
public void eat(){
System.out.println(name+"吃鱼~~~");
}
}
public class Dog extends Animal {
public Dog(String name, int age){
super(name, age);
}

@Override
public void eat(){
System.out.println(name+"吃骨头~~~");
}
}

///分割线//
public class TestAnimal {
// 编译器在编译代码时,并不知道要调用Dog 还是 Cat 中eat的方法
// 等程序运行起来后,形参a引用的具体对象确定后,才知道调用那个方法
// 注意:此处的形参类型必须时父类类型才可以
public static void eat(Animal a){
a.eat();


}
public static void main(String[] args) {
Cat cat = new Cat("元宝",2);
Dog dog = new Dog("小七", 1);
eat(cat);
eat(dog);
}
}

运行结果:
元宝吃鱼~~~
元宝正在睡觉
小七吃骨头~~~
小七正在睡觉

在上述代码中, 分割线上方的代码是类的实现者编写的, 分割线下方的代码是类的调用者编写的.


当类的调用者在编写 eat 这个方法的时候, 参数类型为 Animal (父类), 此时在该方法内部并不知道, 也不关注当前的a 引用指向的是哪个类型(哪个子类)的实例. 此时 a这个引用调用 eat方法可能会有多种不同的表现(和 a 引用的实例相关), 这种行为就称为 多态.

向上转型和向下转型

向上转型

向上转型:实际就是创建一个子类对象,将其当成父类对象来使用。
语法格式:父类类型 对象名 = new 子类类型()

Animal animal = new Cat("元宝",2);

class Animal{public String name;public int age;public void eat(){System.out.println(this.name+"正在吃饭!");}
}class Dog extends Animal{public void bark(){System.out.println(this.name+"汪汪叫");}public void eat(){System.out.println(this.name+"正在吃狗粮!");}
}class Bird extends Animal{public void qiqi(){System.out.println(this.name+"吱吱叫");}}
public class Test {public static void main(String[] args) {/*向上转型:把子类对象给到了父类Dog dog=new Dog();Animal animal=dog;*///可以简写成:Animal animal1=new Dog();animal1.eat();}
}

 

//完整代码:
class Animal{public String name;public int age;public Animal(String name, int age) {this.name = name;this.age = age;}public void eat(){System.out.println(this.name+"正在吃饭!");}
}class Dog extends Animal{public Dog(String name, int age) {super(name, age);}public void bark(){System.out.println(this.name+"汪汪叫");}public void eat(){System.out.println(this.name+"正在吃狗粮!");}
}class Bird extends Animal{public Bird(String name, int age) {super(name, age);}public void qiqi(){System.out.println(this.name+"吱吱叫");}}
public class Test {public static void main(String[] args) {/*向上转型:把子类对象给到了父类Dog dog=new Dog();Animal animal=dog;*///可以简写成:Animal animal1=new Dog("小黄",10);animal1.eat();}
}

 

但是如果访问bark就不行了:

class Animal{public String name;public int age;public Animal(String name, int age) {this.name = name;this.age = age;}public void eat(){System.out.println(this.name+" 正在吃!");}
}class Dog extends Animal{public Dog(String name, int age) {super(name, age);}public void bark(){System.out.println(this.name+"汪汪叫");}public void eat(){System.out.println(this.name+" 正在吃狗粮!");}}class Bird extends Animal{public Bird(String name, int age) {super(name, age);}public void qiqi(){System.out.println(this.name+"吱吱叫");}}
public class Test {public static void main(String[] args) {/*向上转型:把子类对象给到了父类Dog dog=new Dog();Animal animal=dog;*///可以简写成:Animal animal1=new Dog("小黄",10);animal1.eat();//animal1.bark();}
}

 

重写也有快捷键:

 

【使用场景】
1. 直接赋值
2. 方法传参
3. 方法返回 

向上转型的优点:让代码实现更简单灵活。
向上转型的缺陷:不能调用到子类特有的方法。

向下转型

将一个子类对象经过向上转型之后当成父类方法使用,再无法调用子类的方法,但有时候可能需要调用子类特有的方法,此时:将父类引用再还原为子类对象即可,即向下转换。

但是不安全:

class Animal{public String name;public int age;public Animal(String name, int age) {this.name = name;this.age = age;}public void eat(){System.out.println(this.name+" 正在吃!");}
}class Dog extends Animal{public Dog(String name, int age) {super(name, age);}public void bark(){System.out.println(this.name+"汪汪叫");}public void eat(){System.out.println(this.name+" 正在吃狗粮!");}}class Bird extends Animal{@Overridepublic void eat() {System.out.println(this.name+" 正在吃鸟粮!");}public Bird(String name, int age) {super(name, age);}public void qiqi(){System.out.println(this.name+"吱吱叫");}}
public class Test {public static void main(String[] args) {Animal animal1=new Dog("小黄",10);Bird bird2=(Bird)animal1;}
}


向下转型用的比较少,而且不安全,万一转换失败,运行时就会抛异常。Java中为了提高向下转型的安全性,引入了 instanceof ,如果该表达式为true,则可以安全转换。

class Animal{public String name;public int age;public Animal(String name, int age) {this.name = name;this.age = age;}public void eat(){System.out.println(this.name+" 正在吃!");}
}class Dog extends Animal{public Dog(String name, int age) {super(name, age);}public void bark(){System.out.println(this.name+"汪汪叫");}public void eat(){System.out.println(this.name+" 正在吃狗粮!");}}class Bird extends Animal{@Overridepublic void eat() {System.out.println(this.name+" 正在吃鸟粮!");}public Bird(String name, int age) {super(name, age);}public void qiqi(){System.out.println(this.name+"吱吱叫");}public void fly(){System.out.println(this.name+" 正在飞!");}}
public class Test {public static void main(String[] args) {Animal animal1=new Dog("小黄",10);if(animal1 instanceof Bird){Bird bird2=(Bird)animal1;bird2.fly();}else{System.out.println("animal1 instanceof Bird not!");}Animal animal2=new Bird("小黄",10);Bird bird=(Bird)animal2;bird.fly();}
}

重写

重写(override):也称为覆盖。重写是子类对父类非静态、非private修饰,非final修饰,非构造方法等的实现过程进行重新编写, 返回值和形参都不能改变。即外壳不变,核心重写!重写的好处在于子类可以根据需要,定义特定于自己的行为。 也就是说子类能够根据需要实现父类的方法。

【方法重写的规则】
1.子类在重写父类的方法时,一般必须与父类方法原型一致: 返回值类型 方法名 (参数列表) 要完2.全一致被重写的方法返回值类型可以不同,但是必须是具有父子关系的
3.访问权限不能比父类中被重写的方法的访问权限更低。例如:如果父类方法被public修饰,则子类中重写该方法就不能声明为 protected
4.父类被static、private修饰的方法、构造方法都不能被重写。
5.重写的方法, 可以使用 @Override 注解来显式指定. 有了这个注解能帮我们进行一些合法性校验. 例如不小心将方法名字拼写错了 (比如写成 aet), 那么此时编译器就会发现父类中没有 aet 方法, 就会编译报错, 提示无法构成重写.


【重写和重载的区别】

 

【重写的设计原则】
对于已经投入使用的类,尽量不要进行修改。最好的方式是:重新定义一个新的类,来重复利用其中共性的内容,并且添加或者改动新的内容。
例如:若干年前的手机,只能打电话,发短信,来电显示只能显示号码,而今天的手机在来电显示的时候,不仅仅可以显示号码,还可以显示头像,地区等。在这个过程当中,我们不应该在原来老的类上进行修改,因为原来的类,可能还在有用户使用,正确做法是:新建一个新手机的类,对来电显示这个方法重写就好了,这样就达到了我们当今的需求了。

静态绑定:也称为前期绑定(早绑定),即在编译时,根据用户所传递实参类型就确定了具体调用那个方法。典型代表函数重载。
动态绑定:也称为后期绑定(晚绑定),即在编译时,不能确定方法的行为,需要等到程序运行时,才能够确定具体调用那个类的方法。


 

再看多态

class Animal{public String name;public int age;public Animal(String name, int age) {this.name = name;this.age = age;}public void eat(){System.out.println(this.name+" 正在吃!");}
}class Dog extends Animal{public Dog(String name, int age) {super(name, age);}public void bark(){System.out.println(this.name+"汪汪叫");}public void eat(){System.out.println(this.name+" 正在吃狗粮!");}}class Bird extends Animal{@Overridepublic void eat() {System.out.println(this.name+" 正在吃鸟粮!");}public Bird(String name, int age) {super(name, age);}public void qiqi(){System.out.println(this.name+"吱吱叫");}}
public class Test {public static Animal func2(){return new Dog("小黄",10);}public static void func(Animal animal){animal.eat();}public static void main(String[] args) {Dog dog=new Dog("小黄",10);Bird bird=new Bird("小鸟",10);func(dog);func(bird);}
}

 

 

多态的优缺点

假设有如下代码

class Shape{public void draw(){System.out.println("画图形!");}
}
class Rect extends Shape{@Overridepublic void draw() {System.out.println("画一个矩形!");}
}
class Cycle extends Shape{@Overridepublic void draw() {System.out.println("画一个圆圈!");}
}
class Triangle extends Shape{@Overridepublic void draw() {System.out.println("画一个三角形!");}
}
public class Test2 {public static void drawMap(Shape shape){shape.draw();}public static void main(String[] args) {drawMap(new Cycle());drawMap(new Rect());drawMap(new Triangle());}
}

【使用多态的好处】
1. 能够降低代码的 "圈复杂度", 避免使用大量的 if - else

什么叫 "圈复杂度" ?


圈复杂度是一种描述一段代码复杂程度的方式. 一段代码如果平铺直叙, 那么就比较简单容易理解. 而如果有很多的条件分支或者循环语句, 就认为理解起来更复杂.


因此我们可以简单粗暴的计算一段代码中条件语句和循环语句出现的个数, 这个个数就称为 "圈复杂度".
如果一个方法的圈复杂度太高, 就需要考虑重构.


不同公司对于代码的圈复杂度的规范不一样. 一般不会超过 10

例如我们现在需要打印的不是一个形状了, 而是多个形状. 如果不基于多态, 实现代码如下

public static void drawMaps(){Rect rect=new Rect();Cycle cycle=new Cycle();Triangle triangle=new Triangle();String[] shapes={"1","2","2","1","3"};for(String s:shapes){if(s.equals("1")){cycle.draw();}else if(s.equals("2")){rect.draw();}else if(s.equals("3")){triangle.draw();}}}

如果使用使用多态, 则不必写这么多的 if - else 分支语句, 代码更简单.

public static void drawMaps() {Rect rect=new Rect();Shape shapeCycle=new Cycle();Triangle triangle=new Triangle();Shape[] shapes={shapeCycle,rect,rect,shapeCycle,triangle};for (Shape shape:shapes){shape.draw();}}

2. 可扩展能力更强
如果要新增一种新的形状, 使用多态的方式代码改动成本也比较低.

class Flower extends Shape{@Overridepublic void draw() {System.out.println("画一朵花!");}
}

对于类的调用者来说(drawShapes方法), 只要创建一个新类的实例就可以了, 改动成本很低.
而对于不用多态的情况, 就要把 drawShapes 中的 if - else 进行一定的修改, 改动成本更高.


多态缺陷:代码的运行效率降低。
1. 属性没有多态性
当父类和子类都有同名属性的时候,通过父类引用,只能引用父类自己的成员属性
2. 构造方法没有多态性
 

避免在构造方法中调用重写的方法(了解)
 

一段有坑的代码. 我们创建两个类, B 是父类, D 是子类. D 中重写 func 方法. 并且在 B 的构造方法中调用 func

class B {public B() {
// do nothingfunc();}public void func() {System.out.println("B.func()");}
}
class D extends B {private int num = 1;@Overridepublic void func() {System.out.println("D.func() " + num);}
}
public class Test3 {public static void main(String[] args) {D d = new D();}
}

执行结果:

D.func() 0 

构造 D 对象的同时, 会调用 B 的构造方法.
B 的构造方法中调用了 func 方法, 此时会触发动态绑定, 会调用到 D 中的 func
此时 D 对象自身还没有构造, 此时 num 处在未初始化的状态, 值为 0. 如果具备多态性,num的值应该是1.
所以在构造函数内,尽量避免使用实例方法,除了final和private方法
结论: "用尽量简单的方式使对象进入可工作状态", 尽量不要在构造器中调用方法(如果这个方法被子类重写, 就会触发动态绑定, 但是此时子类对象还没构造完成), 可能会出现一些隐藏的但是又极难发现的问题.
 


 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/273827.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

3.11_C++_day1_作业

作业要求&#xff1a; 程序代码&#xff1a; #include <iostream> #include <string.h>using namespace std;int main() {int a0,b0,c0,d0,e0;//分别记录字符串中的大写&#xff0c;小写&#xff0c;数字&#xff0c;空格&#xff0c;其他字符个数string str;cha…

五、OpenAI实战之Assistants API

在8线小城的革委会办公室里&#xff0c;黑8和革委会主任的对话再次展开。 黑8&#xff1a;主任&#xff0c;您知道吗&#xff1f;除了OpenAI API&#xff0c;现在还有一项新的技术叫做Assistants API&#xff0c;它可以帮助我们更好地进行对话和沟通。 主任&#xff1a;Assis…

Milvus 向量数据库实践 - 1

假定你已经安装了docker、docker-compose 环境 参考的文档如下&#xff1a; Milvus技术探究 - 知乎 MilvusClient() - Pymilvus v2.3.x for Milvus 一文带你入门向量数据库milvus 一、在docker上安装单机模式milvus数据库 1、 进入milvus官网&#xff1a; Install Milvus Stand…

关于遗传力常见的误解

大家好&#xff0c;我是邓飞&#xff0c;今天看了一篇非常好的文章&#xff0c;介绍了遗传力相关概念和计算方法&#xff0c;里面提到了常见的误解&#xff0c;这里汇总一下。 文献链接&#xff1a;https://excellenceinbreeding.org/sites/default/files/manual/EiB-M2_Herit…

数据结构---复杂度(2)

1.斐波那契数列的时间复杂度问题 每一行分别是2^0---2^1---2^2-----2^3-------------------------------------------2^(n-2) 利用错位相减法&#xff0c;可以得到结果是&#xff0c;2^(n-1)-1,其实还是要减去右下角的灰色部分&#xff0c;我们可以拿简单的数字进行举例子&…

神经网络实战前言(补充)

深度学习 深度学习是特殊的机器学习&#xff0c;使用复杂的、多层神经网络进行学习。深度神经网络&#xff08;DNN&#xff09;&#xff0c;每层学习的信息的复杂度是不断增加的。例如面部识别&#xff0c;第一层识别眼睛、第二层识别鼻子&#xff0c;直到所有的面部特征识别完…

力扣题目训练(18)

2024年2月11日力扣题目训练 2024年2月11日力扣题目训练561. 数组拆分566. 重塑矩阵572. 另一棵树的子树264. 丑数 II274. H 指数127. 单词接龙 2024年2月11日力扣题目训练 2024年2月11日第十八天编程训练&#xff0c;今天主要是进行一些题训练&#xff0c;包括简单题3道、中等…

如何使用宝塔面板搭建Discuz并结合cpolar实现远程访问本地论坛

文章目录 前言1.安装基础环境2.一键部署Discuz3.安装cpolar工具4.配置域名访问Discuz5.固定域名公网地址6.配置Discuz论坛 前言 Crossday Discuz! Board&#xff08;以下简称 Discuz!&#xff09;是一套通用的社区论坛软件系统&#xff0c;用户可以在不需要任何编程的基础上&a…

2024暑期实习八股笔记

文章目录 自我介绍MySQL索引索引种类、B树聚簇索引、非聚簇索引联合索引、最左前缀匹配原则索引下推索引失效索引优化 日志、缓冲池redo log&#xff08;重做日志&#xff09;刷盘时机日志文件组 bin log&#xff08;归档日志&#xff09;记录格式写入机制 两阶段提交undo log&…

Spring Security的API Key实现SpringBoot 接口安全

Spring Security的API Key实现SpringBoot 接口安全 Spring Security 提供了各种机制来保护我们的 REST API。其中之一是 API 密钥。API 密钥是客户端在调用 API 调用时提供的令牌。 在本教程中&#xff0c;我们将讨论如何在Spring Security中实现基于API密钥的身份验证。 API…

FLatten Transformer_ Vision Transformer using Focused Linear Attention

paper: https://arxiv.org/abs/2308.00442 code: https://github.com/LeapLabTHU/FLatten-Transformer 摘要 当将transformer模型应用于视觉任务时&#xff0c;自注意的二次计算复杂度( n 2 n^2 n2)一直是一个持续存在的挑战。另一方面&#xff0c;线性注意通过精心设计的映射…

Python与FPGA——局部二值化

文章目录 前言一、局部二值化二、Python局部二值化三、FPGA局部二值化总结 前言 局部二值化较全局二值化难&#xff0c;我们将在此实现Python与FPGA的局部二值化处理。 一、局部二值化 局部二值化就是使用一个窗口&#xff0c;在图像上进行扫描&#xff0c;每扫出9个像素求平均…

CVE-2021-31440:eBPF verifier __reg_combine_64_into_32 边界更新错误

文章目录 前言漏洞分析构造 vuln reg 漏洞利用漏洞修复参考 前言 影响版本&#xff1a;Linux 5.7 ~ 5.11.20 8.8 编译选项&#xff1a;CONFIG_BPF_SYSCALL&#xff0c;config 所有带 BPF 字样的编译选项。General setup —> Choose SLAB allocator (SLUB (Unqueued Allocat…

【C++】排序算法

一、排序算法概述 在C语言中&#xff0c;通常需要手写排序算法实现对数组或链表的排序&#xff0c;但是在C中&#xff0c;标准库中的<algorithm>头文件中已经实现了基于快排的不稳定排序算法 std::sort() &#xff0c;以及稳定的排序算法 std::stable_sort() 。 排序算…

vscode中解决驱动编写的时候static int __init chrdev_init()报错的问题

目录 错误出错原因解决方法 错误 在入口函数上&#xff0c;出现 expected a ; 这样的提示 出错原因 缺少了 __KERNEL __ 宏定义 解决方法 补上__KERNEL__宏定义 具体做法&#xff1a;在vscode中按下ctrlshiftp &#xff0c;输入&#xff1a;C/C:Edit Configurations&#xff0…

首发:鸿蒙面试真题分享【独此一份】

最早在23年华为秋季发布会中&#xff0c;就已经宣布了“纯血鸿蒙”。而目前鸿蒙处于星河版中&#xff0c;加速了各大互联网厂商的合作。目前已经有200参与鸿蒙的原生应用开发当中。对此各大招聘网站上的鸿蒙开发需求&#xff0c;每日都在增长中。 2024大厂面试真题 目前的鸿蒙…

并发通信(网络进程线程)

如果为每个客户端创建一个进程&#xff08;或线程&#xff09;&#xff0c;因为linux系统文件标识符最多1024位&#xff0c;是有限的。 所以使用IO复用技术&#xff0c;提高并发程度。 阻塞与非阻塞 阻塞式复用 非阻塞复用 信号驱动IO 在属主进程&#xff08;线程中声明&…

java网络编程 01 IP,端口,域名,TCP/UDP, InetAddress

01.IP 要想让网络中的计算机能够互相通信&#xff0c;必须为计算机指定一个标识号&#xff0c;通过这个标识号来指定要接受数据的计算机和识别发送的计算机&#xff0c;而IP地址就是这个标识号&#xff0c;也就是设备的标识。 ip地址组成&#xff1a; ip地址分类&#xff1a;…

王道机试C++第 3 章 排序与查找:排序问题 Day28(含二分查找)

查找 查找是另一类必须掌握的基础算法&#xff0c;它不仅会在机试中直接考查&#xff0c;而且是其他某些算法的基础。之所以将查找和排序放在一起讲&#xff0c;是因为二者有较强的联系。排序的重要意义之一便是帮助人们更加方便地进行查找。如果不对数据进行排序&#xff0c;…

git 命令怎么回退到某个特定的 commit 并将其推送到远程仓库?

问题 不小心把提交的名称写错提交上远程仓库了&#xff0c;这里应该是 【029】的&#xff0c;这个时候我们想回到【028】这一个提交记录&#xff0c;然后再重新提交【029】到远程仓库&#xff0c;该怎么处理。 解决 1、首先我们找到【028】这条记录的提交 hash&#xff0c;右…