Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Proper way to create packages and re-usable code?

by Laurent_R (Canon)
on Feb 11, 2016 at 11:34 UTC ( [id://1154942]=note: print w/replies, xml ) Need Help??


in reply to Proper way to create packages and re-usable code?

Although there are many exceptions, I would say that, most of the time, you don't want the functions of your module to have side effects (such as printing to a file). You want these functions to receive some parameters and to return a result to be used by the caller.

Of course, one obvious exception is if you want to write a logging module, i.e. a module whose aim is precisely to print things out to one or several files. But then, you have to make it generic if you want to re-use it. So either you have to pass back and forth the file handles between the module and the calling program, or you have to store it in such a way that the module will know where to print, which you can do, for example, with closures or with objects.

Feel free to do that for your own training if you wish, but remember that such modules have already been written, thoroughly tested and made available for free, such as Log::Log4perl. That's probably what you should use for solving a real life problem.

  • Comment on Re: Proper way to create packages and re-usable code?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-24 07:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found