Consider that I have 100 Perl modules in 12 directories. But, looking into the main Perl script, it looks like 100 use p1 ; use p2 ; etc. What is the to best way to solve this issue?
|
|
||||
|
|
|
It seems unlikely to me that you're If, on the other hand, your main program really does talk directly to all 100 modules, then it's probably just plain too big. Identify different functional groupings within the program and break each of those groups out into its own module. The main reason for doing this is so that it will result in code that is more maintainable, flexible, and reusable, but it will also have the happy side-effect of reducing the number of modules that the main program talks to directly, thus cutting down on the number of (And, yes, I do realize that 100 was probably an exaggeration, but, if you're getting uncomfortable about the number of modules being |
|||
|
|
|
Put all the
and include the file in your main script:
|
|||
|
|
|
I support eugene's solution, but you could group the
And of course you should name the modules and the mod-collections meaningful. |
||||
|
|
|
Putting all of the use statements in a separate file as eugene y suggested is probably the best approach. you can minimize the typing in that module with a bit of meta programming:
|
||||
|
|