Perl 倍函数


描述

该函数返回一个四元素列表,给出当前进程及其子进程的用户、系统、子进程和子系统时间。

句法

以下是该函数的简单语法 -

times

返回值

该函数返回 ARRAY, ($usertime, $systemtime, $childsystem, $childuser)

例子

以下是显示其基本用法的示例代码 -

#!/usr/bin/perl -w

($usertime, $systemtime, $childsystem, $childuser) = times();
print("times() $usertime $systemtime $childsystem $childuser\n");

执行上述代码时,会产生以下结果 -

times() 0 0 0 0
perl_function_references.htm