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


in reply to Re^2: Dynamic names
in thread Dynamic names

The \do{my $anon} creates an anonymous reference which can be blessed. To be honest it doesn't do anything more than your simpler example in this case.

Update: To clarify. Just using the plain text string is a class call - the first argument passed to each subroutine will be the name of the class (Cow, Horse, Sheep). My version, which creates a reference to an anonymous scalar, is an object call - the first argument passed to each argument is a unique reference referring to each animal, rather than each species. So this enables other magic to be performed because we can identify not just the type of animal (the class) the which Cow or Sheep, if we need to. It is also the basis of inside-out objects. I'm not clear if the questioner needs this extra level of control though.

Replies are listed 'Best First'.
Re^4: Dynamic names
by 7stud (Deacon) on Nov 17, 2010 at 23:08 UTC

    Hi, I have another question about that do{} construct. Is there any reason to use a do construct and not:

    bless \my $anon, $class;

    or the even easier to type:

    bless {}, $class;
      The first bless \my $anon, $class; retains the name $anon for the rest of the code block - it is no longer anonymous.

      The second bless {}, $class; constructs an anonymous hash, which I believe uses more memory. I cannot claim I invented the use of the do{ } construct in this way, I stole it from TheDamian.