Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个求职面试的问题,我想知道为什么有状态和无状态的小部件使用扩展,为什么不在 Flutter/Dart 中使用工具?
扩展
extends当您想要制作更具体的课程版本时,通常是首选。
extends
当你扩展一个类时,你继承了所有的属性、方法等。如果你想重写一个方法,你可以在方法前面加上@override.
@override
工具
implements是当您想要创建一个全新版本的类但您想要继承类类型时。
implements
当您创建一个类的新实现时,您有责任提供使该类功能所需的一切。