- or download this
package a;
...
}
my $obj = new a ();
- or download this
my $obj = "a"->new();
- or download this
$obj ->{$self}{avalue}=10;
print $obj->{$self}{avalue};
- or download this
{
package a;
...
my $obj = "a"->new();
$obj->avalue(10); # set
print $obj->avalue, "\n"; # get
- or download this
{
package a;
...
my $obj = "a"->new();
$obj->avalue(10); # set
print $obj->avalue, "\n"; # get