[:en]Given the following code:
public class Foo { static void method(int...x) { // insert code here } }
Which code fragment, inserted independently at line 12, will allow the class to compile?
1. for each(x) System.out.println(x);
2. for(int z : x) System.out.println(z);
3. while( x.hasNext()) System.out.println( x.next());
4. None of the above
Option 2 is correct
public class Foo { static void method(int...x) { // inserte código aquí } }
¿Qué fragmento de código insertado independiente en la línea 12, permitirá que la clase compile?
1. for each(x) System.out.println(x);
2. for(int z : x) System.out.println(z);
3. while( x.hasNext()) System.out.println( x.next());
4. None of the above
La opción 2 es la respuesta correcta.