无涯教程-Perl - times函数

描述

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

语法

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

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 中的 times函数 - 无涯教程网无涯教程网提供描述此函数返回一个四元素列表,为当前进程及其子进程提供用户,系统,子进程和子系统时...https://www.learnfk.com/perl/perl-times.html

你可能感兴趣的:(无涯教程,perl)