gpt4 book ai didi

perl - 选择 undef, undef, undef .XX

转载 作者:行者123 更新时间:2023-12-04 14:30:55 27 4
gpt4 key购买 nike

几年前,当我最初学习 Perl 时,我发现自己想说一些类似的话:

sleep .07;

但这实际上行不通。

有人教我使用:
select undef, undef, undef, .07;

反而。

我一直在想:
这是什么意思,为什么有效?

最佳答案

这使用了 select 的第三种形式记录在案:

select RBITS,WBITS,EBITS,TIMEOUT

This calls the select(2) syscall with the bit masks specified

....

You can effect a sleep of 250 milliseconds this way:

    select(undef, undef, undef, 0.25);


实现此功能的更好方法是使用 Time::HiRes qw(usleep)
use Time::HiRes qw(usleep);

usleep($microseconds);

关于perl - 选择 undef, undef, undef .XX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24747561/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com