Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Packages and symbol tables

by Joost (Canon)
on Dec 01, 2007 at 14:16 UTC ( [id://654321]=note: print w/replies, xml ) Need Help??


in reply to Packages and symbol tables

BEGIN { print "$_ => $Foo::{$_}\n" foreach keys %Foo::; }
is probably better in your specific case.

Anyway, my guess at what's going wrong is that base is trying to be clever in a way that you don't expect.

Since you're defining the packages in the same file, just drop the use base and do:

package Foo::Bar; our @ISA = 'Foo';

Replies are listed 'Best First'.
Re^2: Packages and symbol tables
by johnnywang (Priest) on Dec 01, 2007 at 18:17 UTC
    Thanks Joost, your suggested change to use @ISA solved the problem (although I'm now on to the next one!) care to explain the thinking in your message?

Log In?
Username:
Password:

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

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

    No recent polls found