Perl times 函数



描述

此函数返回一个包含当前进程及其子进程的用户、系统、子级和子级系统时间的 4 元素列表。

语法

以下为此函数的简单语法-

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
广告