@override用法(指明一个方法是覆盖了父类的方法)

void main() {
  Man();
}

class Person {
  void speak() {
    print('hi');
  }
}

class Man extends Person {
  @override
  void speak() {
    print('你好');
  }
}

  

posted @ 2024-09-05 16:05  飞雪飘鸿  阅读(12)  评论(0编辑  收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL