我正在学习中间perl.现在我正在研究class的对象引用.在那里他们给了一个包
{
package Barn;
sub new { bless [], shift }
sub add { push @{ +shift }, shift }
sub contents { @{ +shift } }
sub DESTROY {
my $self = shift;
print "$self is being destroyed...\n";
for ( $self->contents ) {
print ' ', $_->name, " goes homeless.\n";
}
}
}
Run Code Online (Sandbox Code Playgroud)
在这个我无法理解带加号运算符的加号工作.在文中他们说,加号就像是赤字,它将被解释为软参考:@ {"shift"}
你能清楚地解释一下使用带加号算子的加号的工作吗?