- 论坛徽章:
- 0
|

刚接触perl,请教一个问题:
我在公司的perl脚本中看到这样一段:
- #!/usr/bin/perl
- ...
- use CTS::Suite;
- ...
- $suite = new CTS::Suite(...);
复制代码 其中CTS为一个子目录名字,Suite为一个包名,Suite.pm文件内容如下:
- package CTS::Suite;
- use strict;
- use vars qw(@ISA $VERSION $SUITEID $BUNDLEINFO $EMAILNOTIFICATION $TESTID $DEBUG $SIGINT $FAILEDEXECID $VERBOSE $SUBCASEID);
- no strict 'refs';
- ...
- # Constructor....
- sub new {
- my $proto = shift;
- my $class = ref($proto) || $proto;
- my %arg = @_;
- my $self = {};
- my $config;
- ...
- return $self;
- }
复制代码 我的问题是:要调用Suite包中的new函数不应该是$suite = CTS::Suite::new(...);吗?为啥可以这样$suite = new CTS::Suite(...);写呢?
望大家指点,谢谢!
|
|