|
use strict;
package human;
#############################################
sub new
#############################################
{
my $class=shift;
my %hash=@_;
my $self={};
bless $self,$class;
$self->{name}=$hash{name};
$self->{sex}=$hash{sex};
return $self;
}
#############################################
sub DESTORY
#############################################
{my $self=shift;
my %hash=%$self;
my $string;
my $filename="$self->{name}".".txt";
open (FILE,">$filename");
foreach(keys %hash)
{
$string.=$_."\t".$hash{$_}."\n";
}
print FILE $string;
close FILE;
}
1;
帮忙解释一下粗体部分 点的作用 |
|