- 论坛徽章:
- 0
|
bfdhczw 发表于 2015-04-29 17:38 ![]()
reference to the man page of dup2
int dup2(int oldfd, int newfd);
dup2() makes newfd be the copy o ...
我按照你说的改了,如下:
- [a@localhost ~]$ cat n.cpp
- #include<sys/types.h>
- #include<sys/stat.h>
- #include<unistd.h>
- #include<fcntl.h>
- #include<stdio.h>
- #include<stdlib.h>
- int main(int argc, char *argv[])
- {
- int fd=open("x.txt",O_CREAT|O_RDWR|S_IWUSR|S_IRUSR|S_IRGRP|S_IWGRP);
- dup2(fd,1);
- write(1,"hello world\n",12);
- printf("myself\n");
- close(fd);
- return 0;
- }
- [a@localhost ~]$ g++ n.cpp && ./a.out
- hello world
- myself
复制代码 可以看到结果还是不变啊? 这到底是怎么回事? |
|