博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
read函数 java 返回值_使用read()函数时检查EOF
阅读量:4964 次
发布时间:2019-06-12

本文共 1115 字,大约阅读时间需要 3 分钟。

这是我第一次使用文件描述符进行阅读,现在我已经通过试验和错误测试了大约3个小时,而且我几乎让我的读者工作了!我只需要在命名管道上检查EOF时需要一些帮助 .

好的,所以我打开一个(好多个)命名管道,如下所示:

fds[j].fd = open(pipeNameo, O_RDWR) ; // storing it into my file descriptor array

然后我轮询命名管道以查看是否有任何事情发生(轮询在循环内):

int ret = poll(fds, numOfPipesUsed, timeout_msecs);

当某些事情发生时,我通过将写入的文件描述符发送到此函数来处理文件:

int processFileDes( int fd )

{

char buf[10] ;

read(fd, buf, 1) ;

char curr = buf[0] ;

while (curr != EOF)

{

if ( curr == ' ')

{

// do nothing it is a space

}

else if ( curr == '\n')

{

printf("NEW LINE!\n") ;

}

else

{

int num = curr - '0' ; // turns char number into an int

printf("Curr Num: %d\n", num) ;

}

printf("BEFORE\n"); // Gets stuck here when EOF, this is the string of output

read(fd, buf, 1) ;

printf("AFTER\n") ;

curr = buf[0] ;

}

printf("Success!\n") ; // this is never printed

return 0 ;

}

一切都很好,除了 the read() function gets stuck (waiting for a return I imagine) once all characters have already been read. 应该是EOF . 我需要能够检查EOF .

我尝试了一种解决方法,通过计算读取的字符数来阻止我的程序读取(因为我知道输入的大小),并且它会起作用,唯一的事情就是当最后一个字符后面有一个空格它导致我的循环poll返回1并在剩余的空间(无效输入)上再次运行 processFile() 以进行读取 .

请帮忙 :')

输入只是一个数字矩阵,如下所示:

0 1 1

2 0 3

1 0 0

转载地址:http://thqhp.baihongyu.com/

你可能感兴趣的文章
PayPal(贝宝)支付接口、文档、IPN
查看>>
ORACLE 10G R2_执行计划中cost cardinality bytes cpu_cost io_cost解释
查看>>
本地存储
查看>>
MP3的播放与停止
查看>>
牛客(59)按之字形顺序打印二叉树
查看>>
JavaScript 图表库 xCharts
查看>>
Android项目的目录结构
查看>>
C++中“引用”的底层实现
查看>>
Spring Cloud与微服务构建:微服务简介
查看>>
Babel 是干什么的
查看>>
cocos2dx-3.0(8)------Label、LabelTTF、LabelAtlas、LabelBMFont使用之法
查看>>
CODE[VS] 1842 递归第一次
查看>>
20180418小测
查看>>
数字三角形
查看>>
NGUI 减少drawcall规则
查看>>
三元表达,匿名函数
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
将github上托管的代码 在我的域名下运行
查看>>