in reply to which loop is better

Why would you even ask such a question? It implies that while Larry was constructing Perl, he was thinking "hmmm, I've a couple of looping constructs. One is clearly better, but let's put the inferior constructs in Perl as well".

You can't say "construct A is better than construct B" - if that were true, we wouldn't have construct B in the first place. Sure, it might be that A is better than B for doing task T, but that's for a specific task. For a different task, B might be better (after specifying by which measure you want it to be "better")

Replies are listed 'Best First'.
Re^2: which loop is better
by Ven'Tatsu (Deacon) on Oct 04, 2004 at 17:11 UTC
    I dissagree.
    There are cases where foreach (LIST) is better than for (EXPR;EXPR;EXPR), but the 3 argument for can do things that foreach can't. When I program in C or Java 50-80% of my for loops are itterating over an array (though use itterators far more in Java), what I would use foreach to do in Perl. In the case of itterating over every element of an array foreach more accurately expresses my intent. I could use for, and it would work, but for tends to be more cluttered, and therefore IMO less readable.
    foreach (@array) { dosomethingto($_); }
    is basicly the same as
    for (my $i = 0; $i < @array; $i++) { dosomethingto($array[$i]); }
    I find the first simpler and the second more powerful but more noisy for most uses.

    If you really feel that Larry never includes 'inferior constructs' in Perl then you don't see any thing wrong with writing
    my $fs = ''; for (my $f = 0; $f < 10; $f++) { #last if $f == 7; next if $f == 5; print "f: $f\n"; $fs .= "$f "; redo if length($fs) == 6; } print "fs: $fs\n";
    as
    my $gs = ''; FOR_INIT: my $g = 0; goto FOR_TEST; FOR_NEXT: $g++; FOR_TEST: goto FOR_LAST unless $g < 10; FOR_REDO: #goto FOR_LAST if $g == 7; goto FOR_NEXT if $g == 5; print "g: $g\n"; $gs .= "$g "; goto FOR_REDO if length($gs) == 6; goto FOR_NEXT; FOR_LAST: print "gs: $gs\n";
    They do the same thing, and I understand both of them. So obviously since they are both in Perl they are both equaly correct. </sarcasm>

    My guess is Larry included both 'better' and 'inferior' constructs because sometimes better is too specific for a task, and only inferior will do the job (such as Switch's use of goto). And it should be up to the programmer to know which to use.