Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Re: Re: Use module questions..

by pfaut (Priest)
on Apr 20, 2003 at 15:11 UTC ( [id://251825]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Use module questions..
in thread Use module questions..

'.' means the process's current working directory which may or may not be the directory containing the script or the directory containing the module. If you want to make sure you find your modules, use absolute paths.

The whole idea of namespaces (packages) is to avoid accidentally redefining routines and variables when you use a module. When you export names from a module, you have removed this protection barrier. It's better to use @EXPORT_OK and let the user decide which names to import than to use @EXPORT and force it on him.

This isn't such a big deal if you're writing both the module and the program that uses it but if you're writing the module for someone else to use it might become an issue. They may not be aware of all of the names you listed in your @EXPORT array. If one of those names clashes with a name they are already using, they may get unexpected behaviour.

Remember, the user can always get to the routines and variables in the package by specifying the full package name, e.g., $PackageName::PackageVar. Providing it through an export only allows the user to use a shorthand notation.

90% of every Perl application is already written.
dragonchild

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (1)
As of 2024-04-25 04:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found