0
What is the meaning of the code
iterator<string>it=animals. iterator (); while (it.hasNext()) { string value=it.next(); sop(value);
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