no_self_assignments
不要将变量赋值给自己。
此规则从 Dart 3.1 起可用。
详情
#不要将变量赋值给自己。这通常是一个错误。
错误示例
dart
class C {
int x;
C(int x) {
x = x;
}
}
正确示例
dart
class C {
int x;
C(int x) : x = x;
}
正确示例
dart
class C {
int x;
C(int x) {
this.x = x;
}
}
错误示例
dart
class C {
int _x = 5;
int get x => _x;
set x(int x) {
_x = x;
_customUpdateLogic();
}
void _customUpdateLogic() {
print('updated');
}
void example() {
x = x;
}
}
正确示例
dart
class C {
int _x = 5;
int get x => _x;
set x(int x) {
_x = x;
_customUpdateLogic();
}
void _customUpdateLogic() {
print('updated');
}
void example() {
_customUpdateLogic();
}
}
错误示例
dart
class C {
int x = 5;
void update(C other) {
this.x = this.x;
}
}
正确示例
dart
class C {
int x = 5;
void update(C other) {
this.x = other.x;
}
}
用法
#要启用 no_self_assignments
规则,请在您的 analysis_options.yaml
文件中的 linter > rules 下添加 no_self_assignments
analysis_options.yaml
yaml
linter:
rules:
- no_self_assignments
除非另有说明,否则本网站上的文档反映的是 Dart 3.6.0。页面上次更新于 2024-07-03。查看源代码或报告问题。