Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: RunTime & compile Time Doubt on Perl (many)

by tye (Sage)
on Sep 03, 2006 at 06:45 UTC ( [id://570915]=note: print w/replies, xml ) Need Help??


in reply to RunTime & compile Time Doubt on Perl

I'm not completely happy with most documentation I see on "compile time" and "run time". They mostly encourage or at least don't discourage the impression that there is one time called "compile time" when your script is compiled and then there is one "run time".

In reality, each statement has its own "compile time" and any number of "run time"s.

I find it clearer and more accurate to think about more detailed steps that perl goes through, in order.

  1. Reads the next line of source code.
  2. Compiles the next complete statement (if there is one)
  3. Performs any "compile-time" actions for that statement
  4. Go to (2) if there are more complete statements already read
  5. Go to (1) if there are more lines to be read from the current source file
  6. Run INIT blocks from the current source file
  7. If the current source file is the main script, then run all CHECK blocks
  8. Start running at the first statement (of the current source file) that is not part of a subroutine
  9. Continue running until "falling off the end" of the current source file
  10. Go to (1) on the previous source file if there is one

So, if I use require in my main script, then there can be whole files of Perl code that don't get compiled until after my main script has finished being compiled and has started running (and the require statement might not even get run).

Conversely, if I use that same require statement inside of a module that my main script uses, then those files will be compiled and their non-subroutine statements run before most of my main script is even compiled.

Update: s/of/off/. Thanks, gam3.

- tye        

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-03-19 05:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found