unnecessary_this
除非为了避免阴影,否则不要使用 this
访问成员。
此规则自 Dart 2.0 起可用。
此规则提供快速修复。
详细信息
#不要在不需要避免阴影时使用 this
。
错误
dart
class Box {
int value;
void update(int newValue) {
this.value = newValue;
}
}
正确
dart
class Box {
int value;
void update(int newValue) {
value = newValue;
}
}
正确
dart
class Box {
int value;
void update(int value) {
this.value = value;
}
}
用法
#要启用 unnecessary_this
规则,请在您的analysis_options.yaml
文件中的 linter > rules 下添加 unnecessary_this
。
analysis_options.yaml
yaml
linter:
rules:
- unnecessary_this
除非另有说明,否则本网站上的文档反映的是 Dart 3.6.0。页面最后更新于 2024-07-03。查看源代码或报告问题。