in reply to Using a module more than once
on your code will load many times the module in the memory. IMHO, once the module is loaded in memory by the first use, the following use has no effect. So if you need to explicitely use the module Foo in your module, just write use Foo; at the head. If other developpers use the same modules as you in their code, that will cause no problem at all. Hope it helps !use Foo ;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Using a module more than once
by Mutant (Priest) on Aug 02, 2005 at 15:32 UTC | |
Re^2: Using a module more than once
by dave_the_m (Monsignor) on Aug 02, 2005 at 15:44 UTC |