当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Perl times用法及代码示例



描述

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

用法

以下是此函数的简单语法 âˆ'

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 times Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。