I see these used interchangeably. What's the difference?

link|improve this question

+1: welcome to stackoverflow :) – Sarfraz Feb 17 '10 at 9:23
3  
They used to be separate ideas, but now they are synonyms. Perl figures out what to do based on what's in the ( ) instead of using the keyword. Blame the people who couldn't type an extra four characters. :) – brian d foy Feb 22 '10 at 0:18
feedback

7 Answers

up vote 11 down vote accepted

I see these used interchangeably.

There is no difference other than that of syntax.

link|improve this answer
1  
+1 Yes, Perl is quite rich in syntactic sugar. There Is More Then One Way to Say It. – Thilo Feb 17 '10 at 9:22
@Thilo: agreed :) – Sarfraz Feb 17 '10 at 9:23
@Sinan Ünür: Thanks :) – Sarfraz Feb 18 '10 at 4:48
feedback

There is no difference. From perldoc perlsyn:

The foreach keyword is actually a synonym for the for keyword, so you can use foreach for readability or for for brevity.

link|improve this answer
feedback

Four letters.

They're functionally identical, just spelled differently.

link|improve this answer
Actually the compile down to the same opcodes. So for all intents and purposes, they are identical. – Brad Gilbert Feb 17 '10 at 14:37
feedback

Ever since its introduction in perl-2.0, foreach has been synonymous with for. It's a nod to the C shell's foreach command.

In my own code, in the rare case that I'm using a C-style for-loop, I write

for (my $i = 0; $i < $n; ++$i)

but for iterating over an array, I spell out

foreach my $x (@a)

I find that it reads better in my head that way.

link|improve this answer
I find the opposite: I always use for my $x (@a). I prefer Python's for x in a loops, or maybe even PHP's for(@a as $x). I never use C-style for loops. I'd write what you have as for my $i (0 .. $n). Perl special-case optimizes that not to create an unnecessary list, so the difference between it and your explicit C-style for loop should be negligible, and I think it's more readable that way. – Chris Lutz Feb 17 '10 at 21:54
feedback

The foreach keyword is actually a synonym for the for keyword, so you can use foreach for readability or for for brevity. (Or because the Bourne shell is more familiar to you than csh, so writing for comes more naturally.) If VAR is omitted, $_ is set to each value.

link|improve this answer
feedback

There is a subtle difference (http://perldoc.perl.org/perlsyn.html#Foreach-Loops) :

The foreach loop iterates over a normal list value and sets the variable VAR to be each element of the list in turn. If the variable is preceded with the keyword my, then it is lexically scoped, and is therefore visible only within the loop. Otherwise, the variable is implicitly local to the loop and regains its former value upon exiting the loop. If the variable was previously declared with my, it uses that variable instead of the global one, but it's still localized to the loop. This implicit localization occurs only in a foreach loop.

This program :

#!/usr/bin/perl -w

use strict;

my $var = 1;
for ($var=10;$var<=10;$var++) {
  print $var."\n"; # print 10
  foo(); # print 10
}

print $var."\n"; # print 11    

foreach $var(100) {
  print $var."\n"; # print 100
  foo(); # print 11 !
}

sub foo {
  print $var."\n";
}

will produce that :

10
10
11
100
11
link|improve this answer
That is explained also stackoverflow.com/q/5398520/579750 and stackoverflow.com/q/2238576/579750 . – user579750 Feb 26 at 22:17
feedback

In case of the "for" you can use the three steps.

1) Initialization 2) Condition Checking 3) Increment or decrement

But in case of "foreach" you are not able increment or decrement the value. It always take the increment value as 1.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.