autodie-pragma 对编码有影响吗?

发布于 2024-10-16 19:54:00 字数 487 浏览 1 评论 0原文

为什么我在“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

Why do I get after the "autodie" a different output?

#!/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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的夜不怕黑 2024-10-23 19:54:00

除非有人有更好的理由,否则这看起来像是与 open pragma 相关的 autodie 的错误。

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

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

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

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

Unless someone comes in with a better reason, this looks like a bug with autodie in relation to the open pragma.

Changing the last open to open my $fh2, '<:utf8', 'test.txt'; fixes the problem on my system. So that could be a temporary work around.

I just checked RT, and this is a registered bug:

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

Looks like it has to do with each pragma using different ways of overloading the open function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文