There are 2 packages in the code.
Package 1 :
package Foo;
sub new {
my ($class, $args) = @_;
my $hashref = {'a' => 1, 'b' => 2};
bless ($self, $class);
return $self;
}
Package 2 :
package Fuz;
use Foo;
.
.
.
.
my $obj = Foo->new($args);
How to get the keys of the blessed hashref in the object ?
Am aware of Acme::Damn
and Data::Structure::Util
modules in perl to unbless the object. Are there any other ways to achieve this ?
Blessing a hash ref does not change that it is still a hash ref. You can therefore dereference it as usual: