Tagged Questions
foreach is a looping construct that executes a given piece of code for each element in a list/collection/array. In contrast to a normal for loop, the foreach loop doesn't require the coder to maintain a counter variable so can help to avoid off-by-one (fencepost) bugs.
281
votes
3answers
25k views
Is there a reason for C#'s reuse of the variable in a foreach?
When using lambda expressions or anonymous methods in C#, we have to be wary of the access to modified closure pitfall. For example:
foreach (var s in strings)
{
query = query.Where(i ...
126
votes
13answers
58k views
LINQ equivalent of foreach for IEnumerable<T>
I'd like to do the equivalent of the following in LINQ, but I can't figure out how:
IEnumerable<Item> items = GetItems();
items.ForEach(i => i.DoStuff());
What is the real syntax?
43
votes
10answers
15k views
Calling remove in foreach loop in Java
In Java, is it legal to call remove on a collection when iterating through the collection using a foreach loop? For instance:
List<String> names = ....
for (String name : names) {
// Do ...
28
votes
6answers
882 views
Inconsistency between std::string and string literals
I have discovered a disturbing inconsistency between std::string and string literals in C++0x:
#include <iostream>
#include <string>
int main()
{
int i = 0;
for (auto e : ...
28
votes
9answers
8k views
Is there a way to access an iteration-counter in Java's for-each loop?
Is there a way in Java's for-each loop
for(String s : stringArray) {
doSomethingWith(s);
}
to find out how often the loop has already been processed?
Aside from using using the old and ...
27
votes
18answers
2k views
Why should I use foreach instead of for (int i=0; i<length; i++) in loops?
It seems like the cool way of looping in C# and Java is to use foreach instead of C style for loops.
Is there a reason why I should prefer this way over the C style?
I'm particularly interested ...
24
votes
4answers
238 views
Why is declaration of the variable required inside a for-each loop in java
The usual form the of for each loop is this:
for(Foo bar: bars){
bar.doThings();
}
But if I want to retain bar until after the loop, I can not use the for each loop:
Foo bar = null;
// - ...
23
votes
3answers
448 views
foreach + break vs linq FirstOrDefault performance difference
I have two classes that perform date date range data fetching for particular days.
public class IterationLookup<TItem>
{
private IList<Item> items = null;
public ...
22
votes
14answers
589 views
Less-verbose way of handling the first pass through a foreach?
I often find myself doing the following index-counter messiness in a foreach loop to find out if I am on the first element or not. Is there a more elegant way to do this in C#, something along the ...
22
votes
5answers
55k views
How do I use a foreach loop in Java to loop through the values in a HashMap?
I am trying to compile the following code:
private String dataToString(){
Map data = (HashMap<MyClass.Key, String>) getData();
String toString = "";
for( MyClass.Key key: ...
21
votes
9answers
747 views
Get out of multiple loops? [closed]
Possible Duplicate:
Breaking out of a nested loop
I have this code
foreach (___)
{
foreach (___)
{
foreach (___)
{
if (condition)
{
...
21
votes
1answer
1k views
Is there an equivalent to 'continue' in a Parallel.ForEach?
I am porting some code to Parallel.ForEach
and got an error with a continue I have in the code. Is there something equivalent I can use in a Parallel.ForEach functionally equivalent to 'continue' in a ...
21
votes
10answers
9k views
Can one do a for each loop in java in reverse order?
I need to run through a List in reverse order using Java.
So where this does it forwards:
for(String string: stringList){
//...do something
}
Is there some way to iterate the stringList in ...
20
votes
7answers
569 views
Should I use std::for_each?
I'm always trying to learn more about the languages I use (different styles, frameworks, patterns, etc). I've noticed that I never use std::for_each so I thought that perhaps I should start. The goal ...
20
votes
8answers
8k views
Does C have a “foreach” loop construct?
Almost all languages have a foreach loop (function) or something similar. I wonder if C has one? Can you post some example code?
19
votes
3answers
4k views
Parallel.ForEach() vs. foreach(IEnumerable<T>.AsParallel())
Erg, I'm trying to find these two methods in the BCL using Reflector, but can't locate them. What's the difference between these two snippets?
A:
IEnumerable<string> items = ...
...
19
votes
18answers
3k views
Advantages of std::for_each over for loop
Are there any advantages of std::for_eachover for loop? To me, std::for_each only seems to hinder the readability of code. Why do then some coding standards recommend its use?
19
votes
5answers
11k views
“Nested foreach” vs “lambda/linq query” performance(LINQ-to-Objects)
In performance point of view what should you use "Nested foreach's" or "lambda/linq queries"?
19
votes
10answers
12k views
18
votes
1answer
216 views
Why C# compiler treated string class separately with foreach statement
I clearly understand "Pattern-based" approach that uses C# compiler when it dealing with the foreach statement.
And from C# Language Specification (section 8.8.4) it is clear that first of all C# ...
18
votes
8answers
652 views
In .NET, using “foreach” to iterate an instance of IEnumerable<ValueType> will create a copy? So should I prefer to use “for” instead of “foreach”?
In .NET, using "foreach" to iterate an instance of IEnumerable will create a copy? So should I prefer to use "for" instead of "foreach"?
I wrote some code to testify this:
struct ...
18
votes
22answers
4k views
Identifying last loop when using for each
I want to do something different with the last loop iteration when performing 'foreach' on an object. I'm using Ruby but the same goes for C#, Java etc.
list = ['A','B','C']
list.each{|i|
...
18
votes
9answers
25k views
How to find the foreach index
Is it possible to find the foreach index?
in a "for" loop as follows:
for($i = 0; $i < 10; ++$i){
echo $i.' ';
}
$i will give you the index.
Do I have to use the for loop or is there some ...
17
votes
2answers
239 views
How do I pass 2 lists into Parallel.ForEach?
How do I pass 2 lists into Parallel.ForEach?
Example:
List<Person> a = new List<Person>() { new Person(), new Person(), new Person() };
List<Car> b = new List<Car>() { new ...
17
votes
18answers
35k views
Find the last element of an array while using a foreach loop in PHP
I am writing a SQL query creator using some parameters. In Java, it's very easy to detect the last element of an array from inside the for loop by just checking the current array position with the ...
16
votes
15answers
981 views
Is there an elegant way of doing something to the last element of a for-each loop in Java?
I'm using Java 6.
Suppose I had a bunch of cats to feed, and suppose myCats is sorted.
for (Cat cat : myCats) {
feedDryFood(cat);
//if this is the last cat (my favorite), give her a tuna
...
16
votes
2answers
6k views
using BOOST_FOREACH with std::map
I'd like to iterate over a std::map using BOOST_FOREACH and edit the values. I can't quite get it.
typedef std::pair<int, int> IdSizePair_t;
std::map<int,int> mmap;
mmap[1] = 1;
...
15
votes
2answers
687 views
Is it possible to limit the cores for Parallel.ForEach?
I'm using a Parallel.ForEach in my code. All my 8 cores go to 100%. This is bad for the other apps that are running on the server. Is it possible to limit execution to like 4 cores?
15
votes
7answers
763 views
In Python, is it better to use list comprehensions or for-each loops?
Which of the following is better to use and why?
Method 1:
for k, v in os.environ.items():
print "%s=%s" % (k, v)
Method 2:
print "\n".join(["%s=%s" % (k, v)
for k,v in ...
15
votes
7answers
6k views
Is it possible to use boost::foreach with std::map?
I find boost::foreach very useful as it saves me a lot of writing. For example, let's say I want to print all the elements in a list:
std::list<int> numbers = { 1, 2, 3, 4 };
for ...
14
votes
3answers
6k views
Javascript, NodeJS: is Array.forEach asynchronous?
I have a question regarding the native Array.forEach implementation of Javascript: Does it behave asynchronously?
For example, if I call:
[many many elements].forEach(function () {lots of work to ...
14
votes
7answers
610 views
Debugging a foreach loop in C#: what iteration is this?
Other than setting a debug variable and incrementing it every time you start the foreach, when you break in with the visual studio debugger connected, is there any way to tell that this is the Xth ...
14
votes
2answers
7k views
Lambda Expression using Foreach Clause
EDIT
For reference, here's the blog post which eric referrrred to in the comments
http://blogs.msdn.com/ericlippert/archive/2009/05/18/foreach-vs-foreach.aspx
ORIG
More of a curiosity I suppose ...
14
votes
6answers
5k views
13
votes
7answers
470 views
In C#, why can't I modify the member of a value type instance in a foreach loop?
I know that value types should be immutable, but that's just a suggestion, not a rule, right?
So why can't I do something like this:
struct MyStruct
{
public string Name { get; set; }
}
public ...
13
votes
4answers
6k views
How to delete object from array inside foreach loop?
I iterate through an array of objects and want to delete one of the objects based on it's 'id' property, but my code doesn't work.
foreach($array as $element) {
foreach($element as $key => ...
13
votes
5answers
648 views
What is the default scope of foreach loop in Perl?
In Perl, does using 'my' within a foreach loop have any effect? It seems that the index variable is always local whether or not 'my' is used. So can you drop the 'my' within the foreach loop and ...
12
votes
3answers
210 views
In Java should I copy a volatile reference locally before I foreach it
If I have the following
private volatile Collection<Integer> ints;
private void myMethod()
{
for ( Integer i : ints )
{
...
}
}
The ints collection is never changed but the ...
12
votes
6answers
947 views
Idiomatic way to use for-each loop given an iterator?
When the enhanced for loop (foreach loop) was added to Java, it was made to work with a target of either an array or Iterable.
for ( T item : /*T[] or Iterable<? extends T>*/ ) {
//use item
...
12
votes
9answers
6k views
Java: What does the colon (:) operator do?
I would look it up myself, but I don't even know what it's called. Would anyone mind explaining what it does? Thanks!
EDIT: I didn't know there were multiple times the : appeared. What does it do in ...
12
votes
11answers
801 views
Is it better coding practice to define variables outside a foreach even though more verbose?
In the following examples:
the first seems more verbose but less wasteful of resources
the second is less verbose but more wasteful of resources (redefines string each loop)
Which is better coding ...
12
votes
6answers
1k views
How is an array in a PHP foreach loop read?
We have all heard of how in a for loop, we should do this:
for ($i = 0, $count = count($array); $i < $c; ++$i)
{
// Do stuff while traversing array
}
instead of this:
for ($i = 0; $i < ...
11
votes
4answers
502 views
Is IEnumerable required to use a foreach loop?
I was wondering, when exactly can I use the foreach loop? Do I have to implement IEnumerable?
11
votes
2answers
972 views
Why can't I do foreach (var Item in DataTable.Rows)?
Is there a reason why I can't do the following:
foreach (var Item in DataTable.Rows) {
rather than having to do
foreach (DataRow Item in DataTable.Rows) {
I would have thought this was possible, ...
11
votes
6answers
629 views
foreach(… in …) or .ForEach(); that is the question
This is a question about coding for readability.
I have an XDocument and a List<string> of the names of the elements that contain sensitive information that I need to mask (replace with ...
11
votes
9answers
4k views
C# - Does foreach() iterate by reference?
Consider this:
List<MyClass> obj_list = get_the_list();
foreach( MyClass obj in obj_list )
{
obj.property = 42;
}
Is 'obj' a reference to the corresponding object within the list so that ...
11
votes
6answers
15k views
C#: Linq style “For Each” [closed]
Possible Duplicate:
Linq equivalent of foreach for IEnumerable
Is there any linq style syntax for "For each" operations?
For instance, add values based on one collection to another, already ...
11
votes
13answers
9k views
remove from a List<T> within a foreach
I have code that I want to look like this:
List<Type> Os;
...
foreach (Type o in Os)
if (o.cond)
return; // quiting early is important for my case!
else
...
10
votes
2answers
220 views
php foreach, why using pass by reference of a array is fast?
Below is a test of php foreach loop of a big array, I thought that if the $v don't change, the real copy will not happen because of copy on write, but why it is fast when pass by reference?
Code 1:
...
10
votes
5answers
2k views
for expressions versus foreach in Scala
I'm working my way through Programming in Scala, and though I'm tempted to look at things from the perspective of Python, I don't want to program "Python in Scala."
I'm not quite sure what to do as ...