@ protected在飞镖中是什么意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@ protected在飞镖中是什么意思相关的知识,希望对你有一定的参考价值。
正如开发文档所说,Dart doesn't have the keywords public , protected , and private . If an identifier starts with an underscore (_), it's private to its library.
但是我在Flutter框架中发现了许多@protected
关键字。 @protected
是什么意思?
abstract class InheritedWidget extends ProxyWidget {
const InheritedWidget({ Key key, Widget child })
: super(key: key, child: child);
@override
InheritedElement createElement() => InheritedElement(this);
@protected
bool updateShouldNotify(covariant InheritedWidget oldWidget);
}
答案
Dart Analyzer用来在子类之外使用成员时提供提示。
您可以找到问题here。
以上是关于@ protected在飞镖中是什么意思的主要内容,如果未能解决你的问题,请参考以下文章