跳至内容

Perl 编程/关键字/times

来自维基教科书,开放的书本,为开放的世界
上一页:time 关键字 下一页:tr

Thetimes关键字

[编辑 | 编辑源代码]

times返回一个包含用户和系统时间的四元素列表,以秒为单位,以及任何退出子进程。

  times
代码
($user, $system, $cuser, $csystem) = times;

print ($user, $system, $cuser, $csystem) . "\n";
print "\n";
print "'" . $user . "', '" . $system . "', '" . $cuser . "', '" . $csystem . "'\n";
首先依次打印用户时间、系统时间和退出子进程(不存在),然后用逗号分隔。
00.01500
'0', '0.015', '0', '0'

另请参阅

[编辑 | 编辑源代码]
gmtime localtime time times utime
上一页:time 关键字 下一页:tr
华夏公益教科书