perl中有文件包含类似的用法吗?

perl中有文件包含类似的用法吗?

比如在一个文件inc.pl中包含了通用的函数,其它的脚本count.pl中要使用此函数时时,可包含inc.pl来使用其中的函数?


QUOTE:
原帖由 moxnet 于 2006-10-6 00:32 发表
比如在一个文件inc.pl中包含了通用的函数,其它的脚本count.pl中要使用此函数时时,可包含inc.pl来使用其中的函数?

right.

require 'inc.pl';
then the count.pl can access the subroutine in the inc.pl as well as it's in the symbol space of itself.
谢谢!

好象是个MM~~~
^_^
为什么我用 require 'a.pl';

a.pl 里定义的数组变量不能被识别啊,说 Global symbol “@host”requires explicit package name?

有人知道为啥吗?
挖挖
去掉use strict;
若干年前的又被翻出来了??
这年头流行挖坟
哈哈  挖坟是我的强项

去掉 use strict 倒是真的就好了,不过如果我想得到它的变量,同时也不去掉 use strict呢?

我就像下面这样定义的:
my @list;
my @host;
my @user;
my @pwd;

只想在另外个文件中,也能识别它为全局变量。