⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 02_fetchsize.t

📁 source of perl for linux application,
💻 T
字号:
#!/usr/bin/perlmy $file = "tf$$.txt";$: = Tie::File::_default_recsep();my $data = "rec1$:rec2$:rec3$:";print "1..6\n";my $N = 1;use Tie::File;print "ok $N\n"; $N++;open F, "> $file" or die $!;binmode F;print F $data;close F;my $o = tie @a, 'Tie::File', $file, autochomp => 0;print $o ? "ok $N\n" : "not ok $N\n";$N++;$: = $o->{recsep};my $n;# 3  test array element count$n = @a;print $n == 3 ? "ok $N\n" : "not ok $N # n=$n\n";$N++;# 4 same thing again   $n = @a;print $n == 3 ? "ok $N\n" : "not ok $N # n=$n\n";$N++;# 5  test $#a notation$n = $#a;print $n == 2 ? "ok $N\n" : "not ok $N # n=$n\n";$N++;# 6  test looping over array elementsmy $q;for (@a) { $q .= $_ }print $q eq $data ? "ok $N\n" : "not ok $N # n=$n\n";$N++;END {  undef $o;  untie @a;  1 while unlink $file;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -