使用is_even而不是取模
优先使用 intValue.isOdd/isEven 来检查奇偶性,而不是检查 % 2 的结果。
此规则自 Dart 2.9 起可用。
详情
#**建议** 使用 intValue.isOdd/isEven 来检查偶数。
错误示例
dart
bool isEven = 1 % 2 == 0;
bool isOdd = 13 % 2 == 1;
正确示例
dart
bool isEven = 1.isEven;
bool isOdd = 13.isOdd;
用法
#要启用 use_is_even_rather_than_modulo
规则,请在 analysis_options.yaml
文件中的 linter > rules 下添加 use_is_even_rather_than_modulo
analysis_options.yaml
yaml
linter:
rules:
- use_is_even_rather_than_modulo
除非另有说明,否则本网站上的文档反映的是 Dart 3.5.3。页面最后更新于 2024-07-03。 查看源代码 或 报告问题。