您什么时候需要在Perl中“END {close STDOUT}”?

前端之家收集整理的这篇文章主要介绍了您什么时候需要在Perl中“END {close STDOUT}”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



tchrists broilerplate中,我发现在END块中显式关闭STDOUT.
END { close STDOUT }

我知道END和关闭,但我错过了为什么需要它.

当开始搜索时,在perlfaq8中找到以下内容

For example,you can use this to make
sure your filter program managed to
finish its output without filling up
the disk:

END {
    close(STDOUT) || die "stdout close Failed: $!";
}

不管怎么说, 原文链接:https://www.f2er.com/Perl/172726.html

猜你在找的Perl相关文章