type_init_formals
不要对初始化形式进行类型注释。
此规则从 Dart 2.0 开始可用。
此规则有 快速修复 可用。
细节
#来自 有效 Dart
不要对初始化形式进行类型注释。
如果构造函数参数使用 this.x
来初始化字段,则参数的类型被理解为与字段相同的类型。如果构造函数参数使用 super.x
来转发到超类构造函数,则参数的类型被理解为与超类构造函数参数相同。
对初始化形式进行类型注释,使用与字段不同的类型是可以的。
错误
dart
class Point {
int x, y;
Point(int this.x, int this.y);
}
正确
dart
class Point {
int x, y;
Point(this.x, this.y);
}
错误
dart
class A {
int a;
A(this.a);
}
class B extends A {
B(int super.a);
}
正确
dart
class A {
int a;
A(this.a);
}
class B extends A {
B(super.a);
}
用法
#要启用 type_init_formals
规则,请在您的 analysis_options.yaml
文件中,在linter > rules 下添加 type_init_formals
analysis_options.yaml
yaml
linter:
rules:
- type_init_formals
除非另有说明,否则本网站上的文档反映了 Dart 3.5.3。页面最后更新于 2024-07-03。 查看源代码 或 报告问题.