Czy moglby mi ktoś wyjaśnić, o co chodzi w tym zapisie?
Could you explain me what does it mean?
for(Integer x : lista)
Dyskutowane
Komentarze (1)
- Popularne
- Najnowsze
- Najstarsze
Musisz się zalogować, aby dodać komentarz
Thomas
29 stycznia 2023, 13:42przydatny
that's called for-each loop and means basically for each element in the container lista named x do the following { /* code in the loops body */ }
So it just iterates over the elements in a container and creates for each element a variable, in your example x that you can use in the body.
Example:
+2