0

What is the meaning of the code

iterator<string>it=animals. iterator (); while (it.hasNext()) { string value=it.next(); sop(value);

19th Jun 2017, 1:09 PM
R Prathibha
R Prathibha - avatar
1 ответ
0
It is kinda like a foreach loop in C# for each element in that list, you set it's value to value and stop it
19th Jun 2017, 1:32 PM
Limitless
Limitless - avatar