@运营商的意义是什么?

时间:2017-02-03 22:24:16

标签: dart

我注意到某些类中有一个@运算符。

例如,

@TestOn("!vm")
.....

当我进一步挖掘TestOn是一个类。

class TestOn {
  /// The expression specifying the platform.
  final String expression;

  const TestOn(this.expression);
}

有人能告诉我@ operator的意义是什么吗?

1 个答案:

答案 0 :(得分:4)

@TestOn("!vm")metadata annotation。它们用于提供有关Dart程序中元素的额外信息。