no_runtimeType_toString
避免在 runtimeType
上调用 toString()
。
此规则从 Dart 2.8 开始可用。
详情
#在运行时类型上调用 toString
是一个非平凡的操作,可能会对性能产生负面影响。最好避免它。
糟糕
dart
class A {
String toString() => '$runtimeType()';
}
良好
dart
class A {
String toString() => 'A()';
}
此 lint 有一些例外情况,在这些情况下,性能不是问题,或者真实的类型信息比性能更重要
- 在断言中
- 在 throw 表达式中
- 在 catch 子句中
- 在混入声明中
- 在抽象类声明中
用法
#要启用 no_runtimeType_toString
规则,请在你的 analysis_options.yaml
文件中的 linter > rules 下添加 no_runtimeType_toString
。
analysis_options.yaml
yaml
linter:
rules:
- no_runtimeType_toString
除非另有说明,本站点上的文档反映的是 Dart 3.6.0。页面最后更新于 2024-07-03。 查看源代码 或报告问题。