悲剧,绝对的悲剧,悲剧中的悲剧。
发布时间:2014-08-26 22:38:41
use 声明装载一个模块(如果它还没有被装载),并且把子过程和变量从这个命名模块输入到当前包。(从技术上来讲,它从那个命名模块向当前包输入一些语意,通常是通过把一些子过程或者变量名作成你的包里的别名的方法。)大多数 use 的声明看起来象:use MODULE LIST;.........【阅读全文】
发布时间:2014-08-26 15:45:59
So you find the Perl docs on modules a bit confusing? OK here is the world's simplest Perl module domonstrating all the salient features of Exporter and a script that uses this module. We also give a short rundown on @INC and finish with a note on using warnings and modules. Here is the module cod.........【阅读全文】