http://www.perlmonks.org?node_id=963945


in reply to Re: Why won't a hash in a hash work as a hash reference to create an object?
in thread Why won't a hash in a hash work as a hash reference to create an object?

Thank you moritz. Quick question, what is the value of $class supposed to be?

Have a cookie and a very nice day!
Lady Aleena
  • Comment on Re^2: Why won't a hash in a hash work as a hash reference to create an object?
  • Download Code

Replies are listed 'Best First'.
Re^3: Why won't a hash in a hash work as a hash reference to create an object?
by chromatic (Archbishop) on Apr 07, 2012 at 21:36 UTC

    It's the name of the class. If you call new as a method:

    my $obj = Class->new;

    ... then it'll be the invocant.

    (Don't not call new as a method. You set yourself up for all kinds of mess that way.)


    Improve your skills with Modern Perl: the free book.

Re^3: Why won't a hash in a hash work as a hash reference to create an object?
by moritz (Cardinal) on Apr 08, 2012 at 05:43 UTC