- 论坛徽章:
- 0
|
求教!
我写了个cocoa.pm
- #!/usr/bin/perl
- package cocoa;
- sub new {
- my $type = shift;
- my %parm = @_;
- my $this = [];
- $this->;[0] = $parm{'Name'};
- $this->;[1] = $parm{'x'};
- $this->;[2] = $parm{'y'};
- bless $this, $type;
- return $this;
- }
- 1;
复制代码
然后这样调用:
#!/usr/bin/perl
push(@INC,"pwd" ;
use cocoa;
$mug=cocoa::new('Name'=>;'top','x'=>;10,'y'=>;20);
print "Name=$mug->;{'Name'}\n";
print "x=$mug->;{'x'}\n";
print "y=$mug->;{'y'}\n";
可是执行后,报错:
Can't coerce array into hash at test line 5.
还有一直没有办法理解bless到底干什么用,就是建立类和变量的关系么?
高手能不能用通俗的语言介绍下!
谢谢了~~~ |
|