@ 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在飞镖中是什么意思的主要内容,如果未能解决你的问题,请参考以下文章

Groovy在英文中是啥意思

如何在颤振/飞镖中缓存列表视图构建器?

在这个 spark 代码片段中 ordering.by 是啥意思?

=+ 在 C 中是啥意思?

“let () =”在 Ocaml 中是啥意思?

有人知道下面的代码片段是啥意思吗?