What loop is more performant in Java: 1. An index loop with a get() call. 2. Iterator loop. The data structure was List
Anónimo
is it an Iterator Loop? first option does i actions in the i-th iteration, while iterator does only one action pare iteration