use_string_buffers
Use a string buffer rather than '+' to compose strings.
Description
#The analyzer produces this diagnostic when values are concatenated to a
string inside a loop without using a StringBuffer
to do the
concatenation.
Example
#The following code produces this diagnostic because the string result
is
computed by repeated concatenation within the for
loop:
dart
String f() {
var result = '';
for (int i = 0; i < 10; i++) {
result += 'a';
}
return result;
}
Common fixes
#Use a StringBuffer
to compute the result:
dart
String f() {
var buffer = StringBuffer();
for (int i = 0; i < 10; i++) {
buffer.write('a');
}
return buffer.toString();
}
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。