gpt4 book ai didi

Dart 扩展 : don't access members with 'this' unless avoiding shadowing

转载 作者:行者123 更新时间:2023-12-03 02:49:42 25 4
gpt4 key购买 nike

我正在学习使用新的 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 扩展 : don't access members with 'this' unless avoiding shadowing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59599657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com