天天看点

exit函数思索

1 exit 对比 return

exit 被 main 函数或者其他函数调用,都会结束进程

return 被 main 函数调用才会结束程序,但是其他函数调用不会

1 #include<stdio.h>
  2 #include<stdlib.h>
  3 int fun()
  4 {
  5 // exit(0);
  6    return 0;
  7 }
  8 int main()
  9 {
 10         printf("111\n");
 11         printf("222\n");
 12         fun();
 13         printf("333\n");
 14         printf("4444\n");
 15 }      
[email protected]:~/work$ ./a.out
111
222
[email protected]:~/work$ gcc test_exit.c 
[email protected]:~/work$ ./a.out
111
222
333
4444      
1 /* 
  2  *  fork_test.c 
  3  *  version 1 
  4  *  Created on: 2010-5-29 
  5  *      Author: wangth 
  6  */
  7 #include <unistd.h>
  8 #include <stdio.h>
  9 #include <stdlib.h>
 10 int main ()
 11 {   
 12     pid_t fpid; //fpid表示fork函数返回的值  
 13     int count=0;
 14     fpid=fork(); 
 15     if (fpid < 0)   
 16         printf("error in fork!");
 17     else if (fpid == 0) {  
 18         printf("i am the child process, my process id is %d\n",getpid());
 19         exit(0);
 20         printf("我是爹的儿子\n");//对某些人来说中文看着更直白。  
 21         count++;
 22     }  
 23     else {
 24         while(1)
 25         {       
 26                 sleep(2);    
 27                 printf("i am the parent process, my process id is %d\n",getpid());
 28                 printf("我是孩子他爹\n");
 29                 count++;
 30         }
 31     }  
 32     printf("统计结果是: %d\n",count);
 33     return 0;
 34 }