Dart 扩展:不要使用 'this' 访问成员,除非避免阴影
Dart extension: don't access members with 'this' unless avoiding shadowing
我正在学习使用新的 Dart 扩展方法。
我正在这样做:
extension StringInsersion on StringBuffer {
void insertCharCodeAtStart(int codeUnit) {
final end = this.toString();
this.clear();
this.writeCharCode(codeUnit);
this.write(end);
}
int codeUnitAt(int index) {
return this.toString().codeUnitAt(index);
}
}
这样我就可以做这样的事情了:
myStringBuffer.insertCharCodeAtStart(0x0020);
int value = myStringBuffer.codeUnitAt(2);
但是,我收到以下 lint 警告:
Don't access members with this
unless avoiding shadowing.
我应该做些不同的事情吗?
您收到的警告含义如下:
无需使用关键字 this
引用当前实例。一切都将在不引用当前实例的情况下工作,因为静态扩展方法本身充当可扩展类型的实例方法。
简单地说,就是从您的代码中删除对当前实例的引用。
来自这里:
final end = this.toString();
为此:
final end = toString();
这是一种基于 Dart 指南的风格。 https://dart-lang.github.io/linter/lints/unnecessary_this.html中有例子。
您可以在 https://dart.dev/guides/language/effective-dart/style.
中找到有关样式的更多信息
我通过更改“analysis_options.yaml”
全局关闭此规则
include: package:flutter_lints/flutter.yaml
linter:
rules:
unnecessary_this: false
我正在学习使用新的 Dart 扩展方法。
我正在这样做:
extension StringInsersion on StringBuffer {
void insertCharCodeAtStart(int codeUnit) {
final end = this.toString();
this.clear();
this.writeCharCode(codeUnit);
this.write(end);
}
int codeUnitAt(int index) {
return this.toString().codeUnitAt(index);
}
}
这样我就可以做这样的事情了:
myStringBuffer.insertCharCodeAtStart(0x0020);
int value = myStringBuffer.codeUnitAt(2);
但是,我收到以下 lint 警告:
Don't access members with
this
unless avoiding shadowing.
我应该做些不同的事情吗?
您收到的警告含义如下:
无需使用关键字 this
引用当前实例。一切都将在不引用当前实例的情况下工作,因为静态扩展方法本身充当可扩展类型的实例方法。
简单地说,就是从您的代码中删除对当前实例的引用。
来自这里:
final end = this.toString();
为此:
final end = toString();
这是一种基于 Dart 指南的风格。 https://dart-lang.github.io/linter/lints/unnecessary_this.html中有例子。 您可以在 https://dart.dev/guides/language/effective-dart/style.
中找到有关样式的更多信息我通过更改“analysis_options.yaml”
全局关闭此规则include: package:flutter_lints/flutter.yaml
linter:
rules:
unnecessary_this: false