作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请先看下面的代码。
#! /usr/bin/perl
package foo;
sub new {
my $pkg = shift;
my $self = {};
my $self->{_fd} = undef;
bless $self, $pkg;
return $self;
}
sub Setfd {
my $self = shift;
my $fd = shift;
$self_->{_fd} = $fd;
}
sub write {
my $self = shift;
print $self->{_fd} "hello word";
}
my $foo = new foo;
最佳答案
您需要输入 $self->{_fd}
块中的表达式或将其分配给更简单的表达式:
print { $self->{_fd} } "hello word";
my $fd = $self->{_fd};
print $fd "hello word";
perldoc -f print
:
Note that if you're storing FILEHANDLEs in an array, or if you're using any other expression more complex than a scalar variable to retrieve it, you will have to use a block returning the filehandle value instead:
print { $files[$i] } "stuff\n";
print { $OK ? STDOUT : STDERR } "stuff\n";
关于perl - 如何在 Perl 类中存储和访问文件句柄?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3027605/
我是一名优秀的程序员,十分优秀!