Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^3: Understanding module structure and inheritance

by naikonta (Curate)
on Jan 30, 2008 at 18:35 UTC ( [id://665184]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Understanding module structure and inheritance
in thread Understanding module structure and inheritance

Hi, bradcathey,
$ cat Common.pm package Common; use strict; use warnings; use Exporter; our @ISA = qw(Exporter); # borrows import() our @EXPORT = qw(show_here); sub show_here { } 1; $ cat Main.pm package Common; use strict; use warnings; use Common; sub show_me {} 1;
The caller of Main.pm has direct access to show_me() and show_here() using qualified name,
Main::show_here; # since exported by default by Common.pm Main::show_me; # originally in Main.pm
If the caller has its own use Common then it doesn't have to qualify it, show_here() is enough.

However, if you meant that "a way to include Common.pm in Main.pm so Contact.pm can use show_here directly, then make Main.pm to reexport the function.

package Main; .... use Exporter; use Common; our @ISA = qw(Exporter); # borrows import() our @EXPORT = qw(show_here); # just @Common::Export to export # what ever Common exports. .... sub show_me {} 1;
The caller,
use Main; Main::show_me(); show_here()

Open source softwares? Share and enjoy. Make profit from them if you can. Yet, share and enjoy!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (None)
    As of 2024-04-25 00:10 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found