面向对象编程(继承、组合、多态、抽象类、接口)

本文详细介绍了Java中的面向对象编程概念,包括继承、组合、多态和抽象类及接口。通过实例解释了各概念的使用和注意事项,如protected关键字、final关键字的应用,以及多层继承和接口实现多态的场景。强调了多态带来的代码灵活性和可扩展性,并探讨了抽象类和接口的区别及其在实际开发中的应用。
摘要由CSDN通过智能技术生成

继承

代码中创建的类, 主要是为了抽象现实中的一些事物(包含属性和方法).
有的时候客观事物之间就存在一些关联关系, 那么在表示成类和对象的时候也会存在一定的关联.
例如, 设计一个类表示动物

注意, 我们可以给每个类创建一个单独的 java 文件. 类名必须和 .java 文件名匹配(大小写敏感)

// Animal.java
public class Animal {
   
 public String name;

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

 public void eat(String food) {
   
 System.out.println(this.name + "正在吃" + food);
 }
}
// Cat.java
class Cat {
   
 public String name;

 public Cat(String name) {
   
 this.name = name;
 }

 public void eat(String food) {
   
 System.out.println(this.name + "正在吃" + food);
 }
}
// Bird.java
class Bird {
   
 public String name;

 public Bird(String name) {
   
 this.name = name;
 }

 public void eat(String food) {
   
 System.out.println(this.name + "正在吃" + food);
 }

 public void fly() {
   
 System.out.println(this.name + "正在飞 ︿( ̄︶ ̄)︿");
 }
} 

这个代码我们发现其中存在了大量的冗余代码
仔细分析, 我们发现 Animal和Cat以及 Bird 这几个类中存在一定的关联关系:

1.这三个类都具备一个相同的 eat 方法, 而且行为是完全一样的.
2.这三个类都具备一个相同的 name 属性, 而且意义是完全一样的.
3.从逻辑上讲, Cat 和 Bird 都是一种 Animal (is - a 语义).

此时我们就可以让 Cat 和 Bird 分别继承 Animal 类, 来达到代码重用的效果
此时, Animal 这样被继承的类, 我们称为 父类 , 基类超类, 对于像 Cat 和 Bird 这样的类, 我们称为 子类, 派生类和现实中的儿子继承父亲的财产类似, 子类也会继承父类的字段和方法, 以达到代码重用的效果
语法规则
基本语法

class 子类 extends 父类 {

}

1.使用 extends 指定父类.
2.Java 中一个子类只能继承一个父类 (而C++/Python等语言支持多继承).
3.子类会继承父类的所有 public 的字段和方法.
4.对于父类的 private 的字段和方法, 子类中是无法访问的.
5.子类的实例中, 也包含着父类的实例. 可以使用 super 关键字得到父类实例的引用

对于上面的代码, 可以使用继承进行改进. 此时我们让 Cat 和 Bird 继承自 Animal 类, 那么 Cat 在定义的时候就不必再写 name 字段和 eat 方法

class Animal {
   
 public String name;
 public Animal(String name) {
   
 this.name = name;
 }
 public void eat(String food) {
   
 System.out.println(this.name + "正在吃" + food);
 }
}
class Cat extends Animal {
   
 public Cat(String name) {
   
 // 使用 super 调用父类的构造方法.
 super(name);
 }
}
class Bird extends Animal {
   
 public Bird(String name) {
   
 }
 public void fly() {
   
 System.out.println(this.name + "正在飞 ︿( ̄︶ ̄)︿");
 }
}
public class Test {
   
 public static void main(String[] args) {
   
 Cat cat = new Cat("小黑");
 cat.eat("猫粮");
 Bird bird = new Bird("圆圆");
 bird.fly();
 }
} 

如果我们把 字段public 改成 private, 那么此时子类就不能访问了

class Bird extends Animal {
   
 public Bird(String name) {
   
 super(name);
 }
 public void fly() {
   
 System.out.println(this.name + "正在飞 ︿( ̄︶ ̄)︿");
 }
}
// 编译出错
//Error:(19, 32) java: name 在 Animal 中是 private 访问控制
protected 关键字

刚才我们发现, 如果把字段设为 private, 子类不能访问. 但是设成 public, 又违背了我们 “封装” 的初衷.
两全其美的办法就是 protected 关键字
对于类的调用者来说, protected 修饰的字段和方法是不能访问的
对于类的 子类同一个包的其他类 来说, protected 修饰的字段和方法是可以访问的

// Animal.java
public class Animal {
   
 protected String name;
 public Animal(String name) {
   
 }
 public void eat(String food) {
   
 System.out.println(this.name + "正在吃" + food);
 }
}
// Bird.java
public class Bird extends Animal {
   
 public Bird(String name) {
   
 super(name);
 }
 public void fly() {
   
 // 对于父类的 protected 字段, 子类可以正确访问
 System.out.println(this.name + "正在飞 ︿( ̄︶ ̄)︿");
 }
}
// Test.java 和 Animal.java 不在同一个 包 之中了.
public class Test {
   
 public static void main(String[] args) {
   
 Animal animal = new Animal("小动物");
 System.out.println(animal.name); // 此时编译出错, 无法访问 name
 }
} 
<
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值