test_types_in_equals
在 operator ==(Object other)
中测试参数的类型。
此规则从 Dart 2.0 开始可用。
详情
#应该在 operator ==(Object other)
中测试参数的类型。
不测试类型可能会导致运行时类型错误,这对于类的使用者来说是意料之外的。
错误示例
dart
class Field {
}
class Bad {
final Field someField;
Bad(this.someField);
@override
bool operator ==(Object other) {
Bad otherBad = other as Bad; // LINT
bool areEqual = otherBad != null && otherBad.someField == someField;
return areEqual;
}
@override
int get hashCode {
return someField.hashCode;
}
}
正确示例
dart
class Field {
}
class Good {
final Field someField;
Good(this.someField);
@override
bool operator ==(Object other) {
if (identical(this, other)) {
return true;
}
return other is Good &&
this.someField == other.someField;
}
@override
int get hashCode {
return someField.hashCode;
}
}
用法
#要启用 test_types_in_equals
规则,请在 analysis_options.yaml
文件中的 linter > rules 下添加 test_types_in_equals
analysis_options.yaml
yaml
linter:
rules:
- test_types_in_equals
除非另有说明,否则本网站上的文档反映的是 Dart 3.6.0。页面上次更新时间为 2024-07-03。 查看源代码 或报告问题。