1
vote
3answers
57 views
How to save values with loop
Hey guys,
I am trying to add the returned value from the test() function into a the variable result, but += does not seem to work. I get the error "invalid variable initialization" …
0
votes
1answer
57 views
Memory Leak when using for(object in array) with iPhone SDK
Hey Everyone,
I am running into some serious memory leaks in one of my applications I am building. I have a UINavigatonController that is inside a UITabBarview. Inside the NavView …
-3
votes
3answers
65 views
For loop in while loop
Hi, can I put a for loop in while loop? For example:
while($end = 1)
{
for ($i = 0; $i < count($match); $i++)
{
$mathcas = $match[$i][1];
}
}
Thanks. :)
0
votes
4answers
210 views
Should I subtract 1 from the upper bound of my “for” loops?
I'm having a bit of trouble figuring out what's going wrong with this function. I'm not sure if I should be using -1 or not anymore, and no matter how I try to arrange the code it …
0
votes
3answers
59 views
iterating over map and array simultaneously in a for loop
I am having some trouble creating a for loop within a constructor to iterate over a map and an array at the same time. Here, it is indicated that this cannot be done with an enhanc …
1
vote
4answers
83 views
PHP - Foreach loops and ressources
I'm using a foreach loop to process a large set of items, unfortunately it's using alot of memory. (probably because It's doing a copy of the array).
Apparently there is a way to s …
0
votes
6answers
152 views
How does the Python’s range function work?
Hi,all,I am not really understand for loop in the following,can anyone give some tips?thanks in advance
for i in range(5):
print i
then it gives 0,1,2,3,4 is that python a …
2
votes
10answers
386 views
One Line ‘If’ or ‘For’…
Every so often on here I see someone's code and what looks to be a 'one-liner', that being a one line statement that performs in the standard way a traditional 'if' statement or 'f …
1
vote
1answer
119 views
Weird acting loop in C#
Note: I added actual code snippets. Just scroll to end.
// files is created by a OpenFileDialog.
public void Function(String[] files, ...)
{
for(int i; i<files.Length; i++) …
1
vote
2answers
59 views
VB6 Type Mismatch in For loop condition
I have been trying to find out why in the following code, the third time through the loop I am getting a Error type 13 Mismatch when the line "For lCount = 0 To maxCount" is being …
7
votes
8answers
459 views
What is the pythonic way to detect the last element in a python ‘for’ loop?
I'd like to know the best way (more compact and "pythonic" way) to do a special treatment for the last element in a for loop. There is a piece of code that should be called only be …
1
vote
2answers
25 views
Need help geocoding town names to their coordinates in a loop
Hi, Ive read similar posts, but still didnt find a solution for myself. Basically I have an array with countries+towns in PHP and I need to show them on the map with markers. Here …
8
votes
13answers
570 views
What is a neat way of breaking out of many for loops at once?
Suppose I need to break out of three or four nested for loops at once at the occurence of some event inside the innermost loop. What is a neat way of doing that?
what I do is use …
2
votes
4answers
86 views
Why does bash ignore newlines when doing for loop over the contents of a C-style string?
Why does the following...
c=0; for i in $'1\n2\n3\n4'; do echo iteration $c :$i:; c=$[c+1]; done
print out...
iteration 0 :1 2 3 4:
and not
iteration 0 :1:
iteration 1 :2:
i …
0
votes
4answers
94 views
Problem using break command in Python tutorial
I'm following the python tutorial at their site and I'm currently at the break continue section. I just tried this sample code.
>>> for n in range(2, 10):
... for x i …
