描述
该函数返回一个 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 time用法及代码示例
- Perl tie用法及代码示例
- Perl tell()用法及代码示例
- Perl tr用法及代码示例
- Perl telldir用法及代码示例
- Perl tell用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
- Perl localtime用法及代码示例
- Perl delete()用法及代码示例
- Perl undef用法及代码示例
注:本文由纯净天空筛选整理自 Perl times Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。