If I define a constant in a Perl module, how do I use that constant in my main program? (Or how do I call that constant in the main program?)
|
|
Constants can be exported just like other package symbols. Using the standard Exporter module, you can export constants from a package like this:
Then, in a client script (or other module)
You can use the Update: Here's an example of how to use the
Then you can say
|
||||
|
|
|
Constants are just subs with empty prototype, so they can be exported like any other sub.
|
||
|
|
|
|
To expand on the earlier answers, since constants are really just subs, you can also call them directly:
|
|||
|
|
|
You might want to consider using Readonly instead of constant. |
||||
|
|
|
|
|||
|
|
|
|
To add to the bag of tricks, since a constant is just a subroutine you can even call it as a class method.
If you have lots of constants it's a nice way to get at the occasional one without having to export them all. However, unlike |
||
|
|
