Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Relative Merits of References

by johngg (Canon)
on May 11, 2006 at 14:39 UTC ( [id://548730]=note: print w/replies, xml ) Need Help??


in reply to Relative Merits of References

I think that construct is still legal in Perl 5.8.x but you may be falling foul of use strict;. I may be wrong but I suspect that your $h contains a string which is the name of another variable thus setting up a soft reference. The following have been run under Perl 5.8.4

Firstly with no use strict; or use warnings;

#use strict; #use warnings; $h = "fred"; %$h = (name => "Jim", age => 34); print $h->{name}, "\n"; print $fred{age}, "\n";

produces

Jim 34

Switching on strict like this

use strict; use warnings; our %fred; my $h = "fred"; %$h = (name => "Jim", age => 34); print $h->{name}, "\n"; print $fred{age}, "\n";

produces

Can't use string ("fred") as a HASH ref while "strict refs" in use at +pbeck2 line 8.

because use strict; objects to soft references. Only by switching strict off for the duration of a code block can you use soft references.

use strict; use warnings; our %fred; my $h = "fred"; { no strict q(refs); %$h = (name => "Jim", age => 34); print $h->{name}, "\n"; } print $fred{age}, "\n";

produces

Jim 34

I hope this clarifies what might be happening with your "illegal" code.

Cheers,

JohnGG

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://548730]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-25 12:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found