avoid_double_and_int_checks
避免 double
和 int
检查。
此规则从 Dart 2.0 开始可用。
详情
#**避免** 检查类型是否为 double
或 int
。
当编译为 JS 时,整数以浮点数表示。这会导致在使用 is
或 is!
时出现一些意外的行为,其中类型为 int
或 double
。
错误
dart
f(num x) {
if (x is double) {
...
} else if (x is int) {
...
}
}
正确
dart
f(dynamic x) {
if (x is num) {
...
} else {
...
}
}
用法
#要启用 avoid_double_and_int_checks
规则,请在 analysis_options.yaml
文件的 **linter > rules** 下添加 avoid_double_and_int_checks
analysis_options.yaml
yaml
linter:
rules:
- avoid_double_and_int_checks
除非另有说明,否则本网站上的文档反映了 Dart 3.5.3。页面最后更新于 2024-07-03。 查看源代码 或 报告问题。