io_utf8.t
来自「source of perl for linux application,」· T 代码 · 共 36 行
T
36 行
#!./perlBEGIN { unless(grep /blib/, @INC) { chdir 't' if -d 't'; @INC = '../lib'; } unless ($] >= 5.008 and find PerlIO::Layer 'perlio') { print "1..0 # Skip: not perlio\n"; exit 0; }}require($ENV{PERL_CORE} ? "./test.pl" : "./t/test.pl");plan(tests => 5);my $io;use_ok('IO::File');$io = IO::File->new;ok($io->open("io_utf8", ">:utf8"), "open >:utf8");ok((print $io chr(256)), "print chr(256)");undef $io;$io = IO::File->new;ok($io->open("io_utf8", "<:utf8"), "open <:utf8");is(ord(<$io>), 256, "readline chr(256)");undef $io;END { 1 while unlink "io_utf8";}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?