list.txt
1
2
3
4
1: io = File.open('list.txt')
2:
3: while not io.eof?
4: io.readlines
5: io.seek(0, IO::SEEK_CUR)
6: p io.readlines
7: end
こちらのプログラムで、
while not io.eof?は
ファイルポインタが終端にない場合、繰り返す
という意味で間違いないでしょうか。
投稿2020/02/13 05:35
1
2
3
4
1: io = File.open('list.txt')
2:
3: while not io.eof?
4: io.readlines
5: io.seek(0, IO::SEEK_CUR)
6: p io.readlines
7: end
こちらのプログラムで、
while not io.eof?は
ファイルポインタが終端にない場合、繰り返す
という意味で間違いないでしょうか。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/14 00:04
2020/02/14 12:16
2020/02/17 02:50
2020/02/17 03:02