八、继承
1. 继承的概念和用途
在面向对象编程中,继承是一种能够创建新类的方式,我们可以在新类中添加新的方法和字段,也可以对父类的方法进行覆写或扩展。
2. 子类和父类
在 Dart 中,我们可以使用 extends 关键字来创建一个子类:
class Animal { void eat() { print('Eating...'); }} class Cat extends Animal { void meow() { print('Meow...'); }} var cat = Cat(); cat.eat(); // 输出 Eating... cat.meow(); // 输出 Meow...
在这个例子中,Cat 类是 Animal 类的子类,因此 Cat 类的对象可以访问 Animal 类的所有公有方法。
3.使用super关键字访问父类
在 Dart 中,我们可以使用 super 关键字来访问父类的方法:
class Animal { void eat() { print('Eating...'); }} class Cat extends Animal { void eat() { print('Cat eating...'); super.eat(); }} var cat = Cat(); cat.eat(); // 输出:// Cat eating...// Eating...
在这个例子中,Cat 类覆写了 Animal 类的 eat 方法,并在 Cat 类的 eat 方法中使用 super.eat() 来调用 Animal 类的 eat 方法。
4.方法覆写
如果子类和父类有同名的方法,那么在子类中的方法会覆写父类中的方法:
class Animal { void eat() { print('Eating...'); }} class Cat extends Animal { @override void eat() { print('Cat eating...'); }} var cat = Cat(); cat.eat(); // 输出 Cat eating...
使用@override注解,在 Dart 中,我们可以使用 @override 注解来表示子类的方法覆写了父类的方法。这是一种良好的编程习惯,可以提高代码的可读性。