sub new
{
my $class = shift; #off the first element
my $self = { };
bless $self, $class;
return $self;
}
Run Code Online (Sandbox Code Playgroud)
谁能解释一下呢?以下三行代码有什么用?
my $self = { };
bless $self, $class;
return $self;
Run Code Online (Sandbox Code Playgroud)