《实验报告六 文件IO及进程控制编程.docx》由会员分享,可在线阅读,更多相关《实验报告六 文件IO及进程控制编程.docx(5页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、实验六 文件I/O及进程控制编程姓名: 学号:实验要求:1 .掌握基本I/O编程。2 .掌握标准I/O操作编程。3 .创立子进程。4 .掌握exec函数族、exit。函数、wait()函数的使用。 实验器材:软件:安装了Fedora 11的vmware虚拟机。硬件:PC机一台。 实验步骤:1 .掌握基本I/O编程。通过综合实例,熟悉Linux下输入输出的基本编程,掌握I/O基本操作如翻开、读取、写入、 定位、关闭所用到的函数open、read write lseek close等。参考代码如下,输入源代码, 编译并运行,在终端中查看结果。#include #include #include #
2、include #include #include #include int main(void)(char *buf=Hcllo! Im writing to this file!;charbuf_rll;int fd,size,len;len = strlen(buf);buf_rflOl = O;/*首先调用open函数,并指定相应的权限力if(fd = open(hello.c, O_CREAT | O_TRUNC | O.RDWR.0666 )0)perrorCopen:);exit(l);)elseprintf(open and create file:hello.c %d OKn
3、fd);/*调用write函数,将buf中的内容写入到翻开的文件中*/if (size = write( fd, buf, len) 0)(perror(write:);exit(l);elseprintf(Wiite:%s OKnn.buf);/*调用Iseek函数将文件指针移动到文件起始,并读出文件中的10个字节*/ lseek(fd. 0. SEEK_SET);if (size = read( fd, bujr, 10)0)(penor(read:);exit(l);elseprintf(read form flle:%s OKn,buf_r); if ( close(fd) 0 ) (
4、perror(close:);exit(l);elseprintf(Close hello.c OKn); return 0;【编译及运行结果截图】【运行结果分析】.掌握标准I/O操作编程。通过综合实例掌握fopen。函数、fck)se()函数、fread()和fwrite()函数的使用,参考代码如下, 输入源代码,编译并运行,在终端中查看结果。#include #includc #include #include #include char buf 1 = abcdefghij; char buf2| = ABCDEFGHIJ1; void err_exit(char *err_s) per
5、ror(err_s);exit(l);int main(void)FILE *fp;if(fp = fopcn(hole.filc,w) = NULL) err_exit(file open fail!);if(fwrite(bufl ,sizeof(buf 1), 1 ,fp)!=l)err_exit(file write bufI error!);if(fseek(fjp,40,SEEK_SET)=-1)err_cxit(fscck error!);if(fwrite(buf2,strlen(buf2), 1 .fp)!=l)crr_cxit(filc write buf2 error!)
6、;fclose(fp);return 0;【编译、运行后查看hole.file是否存在,最后分析运行结果】2 .创立子进程。使用fork函数编程实现创立子进程,理解父子进程执行的流程,参考代码如下,输入源代 码,编译并运行,在终端中查看结果。源代码功能:实现父进程创立一个子进程,返回后父子进程分别循环输出字符串6次,每次 输出后使用sleep(5)延时5秒,然后再进入下一次循环。#includemain。(int p,i;while(p=fork()=-1);创立子进程直至成功if(p=O)子进程返回for(i=0;i6;i+)printf(Hello,this is a child proc
7、ess! ID=%d n,getpid();sleep;延时5秒else父进程返回(for(i=0;i6;i+)printf(Hcllo,this is a parent process! ID=%d n,getpid();sleep(5);延时 5 秒【编译、运行结果截图】【观察运行结果,分析父、子进程的执行顺序】修改上题程序,使用exit。和wait。实现父子进程同步,其同步方式为父进程等待子进程的 同步,即:子进程循环输出6次,然后父进程再循环输出6次。#include niain()int pj;/创立子进程直至成功返回父进程父进程等待子进程终止while(p=fbrk()=-l);i
8、f(P0)(wait(O);for(i=0;i6;i+)printf(Hello,this is a parent process! ID=%d ngetpid();sleep(5);延时 5 秒I)else返回子进程(for(i=0;i exit()等实现进程创立、并发和同步;用fork创立一个子进 程,由其调用cxec()启动shell命令ps查看系统当前的进程信息。#include #include #includc main()pid_t pid;char *path=7bin/ps;char *argv5= ps,-a;,-xn,NULL;printf(Run ps with execve by child process:n); if(pid=fork( )0)(printf(fork error!);exit(O);)else if (pid=0)(if(execve(path,argv,0)0)printfffbrk error!);exit(O);)printf(child is ok!ntr);exit(O);)wait();printf(it is ok!n);exit(O);)【运行结果分析】 总结: