进程用此函数获得自己和已终止子进程的墙上时钟时间,用户CPU时间和系统CPU时间.返回值clock_t标示经过的墙上时钟时间.头文件中.原型: clock_t times(struct tms *buf); 正确返回墙上时钟经过时间, 出错返回-1 ;其中参数类型struct tms为:struct tms { clock_t tms_utime; //用户CPU时间 clock_t tms_stime; ...