ChinaUnix.net
相关文章推荐:

intermediate perl

做个统计。 多少人完整看完了intermediate perl ?

by gaochong - Perl - 2012-07-14 10:45:31 阅读(1850) 回复(6)

intermediateperl

相关讨论

怎么就没有人翻译这本书呢.. 实在是需要,自己看英文版,有点吃力. 有需要的顶啊.看看有没有好心人翻译.

by Ecore - Perl - 2008-03-10 12:17:11 阅读(1669) 回复(2)

太头大了,看reference看的稀里糊涂。 各位是怎么看过来的?

by gaochong - Perl - 2009-12-08 17:53:40 阅读(1159) 回复(3)

croak "I expected a hash reference!" unless $ref_type eq ref {} ref {} 这个什么东东? **这个语法? 补充问题: 在perl 怎么定义一个constant 东东。

by wuxiaobo_2009 - Perl - 2012-09-05 14:56:16 阅读(991) 回复(3)

[code]#!/usr/bin/perl-w $Data::Dumper::Purity=1; use Data::Dumper; my @data1=qw(one won); my @data2=qw(two too to); push @data2,\@data1; push @data1,\@data2; print Dumper(\@data1,\@data2);[/code]输出结果为: $VAR1 = [ 'one', 'won', [ 'two', 'too', 'to', [] ] ]; $VAR1->[2][3] = $VAR1; $VAR2 = $VAR1->[2];...

by fucj - Perl - 2011-03-10 15:16:53 阅读(1115) 回复(1)

分享的资源大部分都不全,急求课后习题答案,在此谢过了哈:wink:

by perl初学者 - Perl - 2012-07-26 13:43:20 阅读(1125) 回复(2)

OReilly.intermediate.perl [hide] [/hide]

by patagonia - 下载共享 - 2015-06-06 08:53:58 阅读(23188) 回复(103)

本帖最后由 perlvim 于 2013-02-23 22:40 编辑 intermediate perl 第一章 intermediate perl 第二章 intermediate perl 第三章 intermediate perl 第四章 intermediate perl 第五章 intermediate perl 第六章 intermediate perl 第七章 intermediate perl 第八章 intermediate perl 第九章 intermediate 第十章 intermediate perl 第十一章 intermediate perl 第十二章 许多链接都失效了,大家可以到这里看: https://github....

by Perlvim - Perl - 2016-04-05 16:21:27 阅读(26848) 回复(41)

今天看了 《intermediate perl 2nd EDITION》 看到第四章Introduction to References的时候发现一个问题, 一下是英文版截图:(英文版第37页Doing the Same Task on Many Arrays那节) 这里是不是写错了?perl的子程序的默认传参机制是“引用传递”的。如果你要“按值传递”的,你需要显式的写 例如: my @params = @_; 上文说不会修改到原来的数组? 哥做了一个测试: #!/usr/bin/per use strict; use warnings; my @required =...

by chenxianzai - Perl - 2013-11-17 12:13:24 阅读(1943) 回复(12)

求转让,新的旧的中文的英文的都行。谢谢。

by 帅哥已注册 - Perl - 2013-09-13 19:21:57 阅读(3556) 回复(6)

2. 4. 1. 习题 1 [15 分钟] 写一个程序从命令行取一个文件清单, 然后用 grep 把那些文件大小在 1000 字节以内的文件找出来。 用 map 把这个清单里的每个字串前加四个空格并在字串后面加上换行符。 然后输出列表结果。 use warnings; use strict; my $dir = "f:/work"; my $file; my @dir; $dir = shift; chomp $dir; opendir( DIR, $dir ) or die "can't open the directory!"; @dir = readdir DIR; #print "@dir\n"; print m...

by blackfur - Perl - 2013-03-19 20:32:10 阅读(1196) 回复(8)