Perl 的 $| 吗? 设置影响系统命令吗?
我正在查看 Perl 中的一些旧代码,作者在其中编写了 <代码>$| = 1 在第一行。
但该代码没有任何打印语句,它使用 system
命令调用 C++ 二进制文件。 现在我读到 $|
将在每次打印后强制刷新。 那么它是否会以任何方式影响系统命令的输出,或者我是否可以安全地删除该行。
谢谢 阿尔文德
I am looking at some old code in Perl, where the author has writtern$| = 1
in the first line.
But the code does not have any print statements, it calls a C++ binary using the system
command. Now I read that $|
will force flush after every print. So does it affect the system command's output in any way or am I safe to remove that line.
Thanks
Arvind
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不这么认为。 $| 会影响 Perl 的运行方式,而不是任何外部可执行文件。
您应该可以安全地将其删除。
perldoc - perlvar :状态“如果设置为非零,则立即和之后强制刷新当前所选输出通道上的每次写入或打印。”。 我认为这里重要的是“当前选择的输出通道”。 外部应用程序将有其自己的输出通道。
I do not believe so. The $| will affect the way that Perl is running, not any external executable.
You should be safe to remove it.
perldoc - perlvar : States "If set to nonzero, forces a flush right away and after every write or print on the currently selected output channel.". I think the important thing here is the "currently selected output channel". The external application will have it's own output channel.
对于这样的问题,通常很容易编写一个简单的程序来显示行为是什么:
从中我们可以看到,设置
$|
对通过system
。With questions like this it is often easy to write a trivial program that shows what the behavior is:
From this we can see that setting
$|
has no affect on programs run throughsystem
.您可以轻松地自行检查这一点。 创建一个缓冲很重要的程序,例如打印一系列点。 由于输出被缓冲,您应该在十秒后立即看到所有输出:
现在,尝试设置
$|
并使用system
调用它:对于我的测试用例,$ | 值不影响子进程中的缓冲。
This is something that you can easily check yourself. Create a program where buffering matters, like printing a series of dots. You should see the output all at once after ten seconds since the output is buffered:
Now, try setting
$|
and calling this withsystem
:For my test case, the $| value didn't affect the buffering in the child process.