在 C 语言中,我可以读取输入并在程序到达文件末尾 ( EOF
) 时停止程序。像这样。
#include <stdio.h>
int main(void) {
int a;
while (scanf("%d", &a) != EOF)
printf("%d\n", a);
return 0;
}
我怎么能在Lua中做到这一点?
Lua 文档提供了大量关于文件读取和其他 IO 的详细信息。读取整个文件:
t = io.read("*all")
显然读取整个文件。该文档有关于逐行阅读等的示例。希望这会有所帮助。
读取文件的所有行并对每一行进行编号(逐行)的示例:
local count = 1
while true do
local line = io.read()
if line == nil then break end
io.write(string.format("%6d ", count), line, "\n")
count = count + 1
end
对于lua中的类似程序,你可以逐行读取它并检查该行是否为nil(当该行为EOF时返回)。
while true do
local line = io.read()
if (line == nil) then break end
end