I always wonder why I must write
foreach my $x (@arr)
instead of
foreach my $x @arr
What is the purpose of the parentheses here?
feedback
|
|
Flippant answer: Because that's the way Larry More serious answer: It helps to disambiguate between "iterate over | |||||
feedback
|
|
I can only think of one concrete reason for it. The following code is valid:
If you were to change that to
Then you would really be saying
(i.e. a hash lookup). Perl 6 gets around this issue by changing the way whitespace works with variables (you can't say | |||||||||||||||||||
feedback
|
|
BTW, you can use the expression form of the
or
| ||||
|
feedback
|
|
Perl has two types of functions - one works in scalar context and another works in list context.'Foreach' works in list context so parentheses indicate the its context. like assume a array:
So we can write -
OR
| |||
feedback
|
|
David B, In this context they should be equivalent, however many times parentheses either change the order of operation in which something is performed, or the type of variable returned (a listing). Different functions may handle lists vs arrays/hashes differently. Order of OperationDuring a foreach loop, it's typical to sort a listing: This could also be written as: ListsOn the other hand, you should look at the difference between a list, array, and hash. Lists are generally the base type, where hash/arrays have additional functions/abilities. Certain functions will only operate on lists, but not their scalar counterpart. Addendum:I think I should also add, as Randal Schwartz (co-author of the first Camel book) has pointed out in previous citings, that the "for" loop is from C and the "foreach" loop is from Csh. What is inside the parentheses is used to determine which loop is used by perl. The for/foreach can be used interchangeably only because perl examines the contents in the | ||||
|
feedback
|