Care must be used if one is to say [...] they can be used "interchangeably".
The keywords can be used interchangeably. Any difference is purely stylistic.
Anyhow, I'm interested in why Perl has the two styles of "for" constructs
Three kinds of loops use for/foreach as far as I'm concerned:
- Counting loop: for[each] [VAR] (EXPR .. EXPR)
- Iterative loop: for[each] [VAR] (LIST)
- C-style for loop: for[each] (EXPR; EXPR; EXPR)
The following iterative loops are optimised in one way or another:
- for[each] (@array)
- for[each] (reverse @array)
- for[each] (reverse EXPR .. EXPR)
- for[each] (reverse CONST_EXPR .. CONST_EXPR)
"For" looks to behave differently depending on it's context: c-style vs. (er) foreach-style. If one uses c-style "for" loops you don't always get localised indexing variables as you seem to in "foreach" loops.
That's either unclear or wrong.
C-style for loops (whether written with for or foreach) don't localise the index variable simply because they don't accept an index variable.
However, you are free to declare variables in all three of its control expressions, and they will be scoped to the loop.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|