Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: To module or not?

by japhy (Canon)
on Apr 26, 2005 at 14:17 UTC ( [id://451581]=note: print w/replies, xml ) Need Help??


in reply to To module or not?

In your case, there's not much of a problem. The reason modules (and namespaces) exist is becuse related functions belong packaged together, and you should have ability to use a function from another namespace that might end up conflicting with a function in your namespace.

If you had an add_it() function that you didn't want overwritten, you could use your module as

use MyModule; print MyModule::add_it($amount);
And when multiple modules have the same function names (this is most common with classes -- objects, I mean), they need to be able to keep their own functions separate to themselves.

Jeff japhy Pinyan, P.L., P.M., P.O.D, X.S.: Perl, regex, and perl hacker
How can we ever be the sold short or the cheated, we who for every service have long ago been overpaid? ~~ Meister Eckhart

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-24 02:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found