1
vote
2answers
35 views
What is the difference between release and iteration?
The title says What is the difference between release and iteration? Can you explain what the difference is?
3
votes
5answers
170 views
How do I iterate through instances of a class in C#?
Is there a way to iterate over instances of a class in C#? These instances are not tracked or managed in a collection.
0
votes
4answers
103 views
Efficient way of calling set of functions in Python
I have a set of functions:
functions=set(...)
All the functions need one parameter x.
What is the most efficient way in python of doing something similar to:
for function in f …
0
votes
1answer
60 views
How to synchronize asynchronous methods?
var arguments = new double[] { 1d, 2d, 3d };
var result = arguments.Select(arg => Math.Sqrt(arg));
Now imagine a asynchronous method instead of Math.Sqrt (i'm not sure the met …
0
votes
5answers
94 views
More efficient method for this calculation?
a = 218500000000
s = 6
f = 2
k = 49
d = k + f + s
r = a
i = 0
while (r >= d):
r = r - d
#print ('r = ',r)
i = i+1
#print ('i = ',i)
print (i)
I think it does what …
0
votes
0answers
21 views
Java: JGraphT: Iterate through nodes
I'm trying to iterate through all nodes, so I can print them out for graphviz. What is the best way to do that using the JGraphT library?
public static void main(String[] args) {
…
1
vote
2answers
103 views
linux iterate over files in directory
I'm trying to iterate over each file in a directory. Here's my code so far.
while read inputline
do
input="$inputline"
echo "you entered $input";
if [ -d "${input}" ]
then …
2
votes
1answer
49 views
How to make a loop in Power Point VBA?
As far as I know, the code below gets a shape from the active window, nudges it a bit, copies the slide and pastes it right after the current one, then turns the pasted slide into …
0
votes
2answers
60 views
c# .net iterating twice a list in a inner and outer loop - local copy or reference?
Hallo everyone,
i have a list of nodes ListNode and i want to draw a line between two nodes if there is an edge / link between them. My approach so far is:
public void drawGraphI …
2
votes
4answers
101 views
Python Scoping/Static Misunderstanding
I'm really stuck on why the following code block 1 result in output 1 instead of output 2?
Code block 1:
class FruitContainer:
def __init__(self,arr=[]):
self. …
0
votes
6answers
120 views
Java: Changing the properties of an iterable object while iterating over it
The following code is just to produce an example of the problem:
public static void main(String[] args) {
Collection<Integer> src = new ArrayList<Integer>();
Coll …
2
votes
3answers
214 views
Java: Foreach loop
Hi,
In Java, a for-each loop.
If I have a method that generates an array, called genArray().
In the following code, will the array each time be re-generated by calling genArray() …
0
votes
2answers
23 views
UserControl array, each control has a method to set the text of a label there, but getting a NullReferenceException. Help!
So, I create an array:
TorrentItem[] torrents = new TorrentItem[10];
The TorrentItem control has a method called SetTorrentName(string name):
private void SetTorrentName(string …
3
votes
3answers
93 views
C# iteration requesting scenario based example
I am dropping this line after having visited different websites to try understand real time
example of using custom enumeration.I got examples.But they lead me to confusion.
Exam …
3
votes
3answers
125 views
Fastest way to iterate array in PHP
I'm studying for the Zend PHP certification.
Not sure the answer to this question.
Question: What is the best way to iterate and modify every element of an array using PHP 5? …
