下面的示例 (1) 读取文件并打印内容,而不将文件内容显式分配给变量(即“.then(stdout.write)”)。但是,如果我想做的不仅仅是打印内容(2),我需要将内容分配给一个变量(我认为)。
是否可以在不将文件文本分配给变量的情况下实现这一目标(打印内容并做更多事情)?
在第一个示例中,是否创建了隐式变量?或者,换句话说,example1 是否通过不创建显式变量来使用更少的资源?
//Example 1:
import 'dart:io';
void main() {
new File(new Options().script)
.readAsString(encoding: Encoding.ASCII)
.then(stdout.write)
.catchError((oError) => print(oError));
print("Reading file ...\n");
}
//Example 2:
import 'dart:io';
void main() {
new File(new Options().script)
.readAsString(encoding: Encoding.ASCII)
.then((String sText) {
stdout.write(sText+"\n\n");
print ('Completed');
})
.catchError((oError) => print(oError));
print("Reading file ...\n");
}