blessとは$obj = bless { }, "ClassName";
blessされる
package Child; @ISA = qw(Person); # 継承 sub new { my $class = shift; # クラス名 my $self = $class->SUPER::new(@_); # 親クラスの new # $self は Child クラス! $self->do_my_own_thing; # Child クラスのメソッド return $self; }