in reply to Understanding order of module compilation and execution
So, if the script has "use A;" before "use B;", the compiler will complile "A" first (and during that compilation, it will compile any 'used' modules in A), then, when it has compiled A, it will compile B.
If 2 modules have dependencies on each other an they both do some initialization before defining subs, how can your guarantee which order the initialization code is run in?It would be a lot easier if you don't have circular dependencies. One day, you, or someone coming after you, will change the code that requires A to be compiled before B, while at the same time, it requires B to be compiled before A.
Anyway, you will have to use BEGIN and INIT blocks, remembering that 'use' is a BEGIN block as well. BEGIN blocks are executed as soon as they are compiled. INIT blocks are run before the main program starts, and they are run in the order they are compiled in.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Understanding order of module compilation and execution
by ikegami (Patriarch) on Dec 16, 2005 at 17:13 UTC | |
by Perl Mouse (Chaplain) on Dec 16, 2005 at 18:06 UTC | |
by ikegami (Patriarch) on Dec 16, 2005 at 20:01 UTC |