目录

use_enums

使用枚举而不是行为像枚举的类。

此规则从 Dart 2.17 开始可用。

此规则有可用的快速修复

详情

#

看起来像枚举的类应该声明为 enum

应该在适当的地方使用枚举。

枚举的候选类是

  • 是具体的,
  • 是私有的或只有私有的生成构造函数,
  • 有两个或多个静态常量字段,其类型与该类相同,
  • 具有生成构造函数,这些构造函数仅在这些静态字段的初始化表达式的顶层调用,
  • 不定义 hashCode==valuesindex
  • 不扩展除 Object 之外的任何类,并且
  • 在定义库中没有声明子类。

要了解有关创建和使用这些枚举的更多信息,请查看声明增强枚举

错误

dart
class LogPriority {
  static const error = LogPriority._(1, 'Error');
  static const warning = LogPriority._(2, 'Warning');
  static const log = LogPriority._unknown('Log');

  final String prefix;
  final int priority;
  const LogPriority._(this.priority, this.prefix);
  const LogPriority._unknown(String prefix) : this._(-1, prefix);
}

正确

dart
enum LogPriority {
  error(1, 'Error'),
  warning(2, 'Warning'),
  log.unknown('Log');

  final String prefix;
  final int priority;
  const LogPriority(this.priority, this.prefix);
  const LogPriority.unknown(String prefix) : this(-1, prefix);
}

用法

#

要启用 use_enums 规则,请在 analysis_options.yaml 文件中的 linter > rules 下添加 use_enums

analysis_options.yaml
yaml
linter:
  rules:
    - use_enums