- 论坛徽章:
- 2
|
回复 #1 dilfish 的帖子
1 #include <stdio.h>
2 #include <unistd.h>
3 #include <sys/types.h>
4 #include <sys/stat.h>
5 #include <fcntl.h>
6
7 int main()
8 {
9 int fd;
10 pid_t pid;
11
12 close(STDIN_FILENO);
13 fd = open("fin.txt",O_RDONLY);
14 //printf("%d\n",fd);
15
16 pid = fork();
17 if(pid > 0)
18 {
19 char c;
20 sleep(2);
21 read(fd,&c,1);
22 printf("%c \n",c);
23 exit(0);
24 }
25 else if(pid == 0)
26 {
27 char c;
28 read(fd,&c,1);
29 printf("%c ",c);
30 exit(0);
31 }
32
33 return 0;
34 }
你这个程序的错误出在getchar()这个函数上,这个函数从流中读取时,不是一个只读一个字符,默认情况下是读到\n到它的缓冲区中,然后在从缓冲区中取第一个字符。因此,你第一次读后,文件指针已经读到文件尾了,在读就没有东西了,也可能就是乱码了!这里用了read(),是不带缓冲区的I/O,所以读一个字符就是一个字符! |
|