Perl times 函数

描述

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


语法

以下是此函数的简单语法 −

times

返回值

这个函数返回数组,($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 函数参考