According to the doc, the while statement executes the block as long as the expression is true. I wonder why it becomes an infinite loop with an empty expression:
while () { # infinite loop
...
}
Is it just inaccuracy in the doc?
It seems that Another example of pre-defined compiler behaviour:
I would say that this is just the docs not reporting a special case. * — To be precise, the |
|||||||||||||||||||||
|
|
This is a special case of the concept of Vacuous Truth. If there is no condition, the statement while the condition is true is itself vacuously true. If I am reading this correctly, the relevant piece of code seems to be around line 5853 of
I am assuming with no |
||||
|
|
|
This is a special case. An empty condition expression defaults to just
has the same effect for the same reason. There doesn't appear to be any mention of this in the official perl docs, and yet there is a special rule in the parser for it. Perhaps it's because nobody uses it :) The |
|||||||||||||||||
|
while (1)to emphasize the intent. – JRFerguson Apr 26 '12 at 12:29