如何测试EOF
R中的标志?
例如:
f <- file(fname, "rb") while (???) { a <- readBin(f, "int", n=1) }
Ben Hoffstei.. 6
该readlines方法,当它到达EOF函数会返回一个零长度值.
该readlines方法,当它到达EOF函数会返回一个零长度值.
尝试检查readBin返回的数据长度:
while (length(a <- readBin(f, 'int', n=1)) > 0) { # do something }