如何在 R 中测试 EOF 标志?
如何在 R 中测试 EOF
标志?
例如:
f <- file(fname, "rb")
while (???) {
a <- readBin(f, "int", n=1)
}
How can I test for the EOF
flag in R?
For example:
f <- file(fname, "rb")
while (???) {
a <- readBin(f, "int", n=1)
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
readLines 函数将返回零长度到达 EOF 时的值。
The readLines function will return a zero-length value when it reaches the EOF.
尝试检查 readBin 返回的数据长度:
Try checking the length of data returned by readBin: