16

为什么我在“autodie”之后得到不同的输出?

#!/usr/bin/env perl
use warnings;
use 5.012;
use utf8;
use open ':encoding(utf-8)';
use open ':std';

open my $fh, '>', 'test.txt' or die $!;
say $fh 'käse';
close $fh;

open my $fh1, '<', 'test.txt' or die $!;
while ( my $row = readline( $fh1 ) ) {
    print $row;
}
close $fh1;

use autodie;

open my $fh2, '<', 'test.txt';
while ( my $row = readline( $fh2 ) ) {
    print $row;
}
close $fh2;

# Output:
# käse
# käse
4

1 回答 1

17

除非有人有更好的理由进来,否则这看起来像是与编译指示autodie有关的错误。open

更改上次打开以open my $fh2, '<:utf8', 'test.txt';解决我系统上的问题。所以这可能是一个临时的解决方法。

我刚刚检查了 RT,这是一个已注册的错误:

https://rt.cpan.org/Public/Bug/Display.html?id=54777

看起来它与使用不同方法重载open函数的每个编译指示有关。

于 2011-02-10T16:15:04.093 回答