作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在Dart中定义以下“枚举”:
class Place {
static const SigninPlace = const Place._("", new Map<String,String> { "fizz": "buzz"});
static const SignoutPlace = const Place._("", null);
static get values => [SigninPlace, SignoutPlace];
final String name;
final Map<String,String> params;
const Place._(this.name, this.params);
}
SigninPlace
声明中出现编译器错误:
Arguments of a constant creation must be constant expressions
Place
的
<String,String>
映射不会改变,并且在启动时就已知)。
最佳答案
当您定义const时,其所有成员都必须是常量表达式。在您的情况下,new Map<String,String> { "fizz": "buzz"}
不是常量表达式。您必须使用const <String,String>{ "fizz": "buzz"}
创建一个常量Map。
class Place {
static const SigninPlace = const Place._("",
const <String,String>{ "fizz": "buzz"});
static const SignoutPlace = const Place._("", null);
static get values => [SigninPlace, SignoutPlace];
final String name;
final Map<String,String> params;
const Place._(this.name, this.params);
}
关于enums - Dart枚举编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20859226/
我是一名优秀的程序员,十分优秀!