http://qs321.pair.com?node_id=427504


in reply to Importing constants into another module

What's the benefit of exporting these constants? Just call them with the package name prepended like Audit::Config->HOST_BIN. It's more verbose, but it's better OO for reasons of encapsulation, it simplifies your code because you don't have to twiddle with exports, and it advertises to readers of the code exactly where that data is coming from and thereby increases maintainability.


"The dead do not recognize context" -- Kai, Lexx

Replies are listed 'Best First'.
Re^2: Importing constants into another module
by paulski (Beadle) on Feb 03, 2005 at 02:47 UTC
    You're right, it's a tradeoff. I could either have more verbose constants, which would clutter up the code (they're used very frequently) and good OO design. Or I could export them all so other modules looks less cluttered but sacrifice maintainability/extensibility in the future.

    Given that this application has a limited lifespan and scope, I'm thinking the latter makes the most sense.

    Feel free to call me insane. :-)

      Thanks for everyone's help. I've got this module stuff down now. :-)