Per creare un metodo che accetta un array come argomento, dovresti fare questo:
public static void printAges(int[] age) { // prints ages to screen
for (int x = 0; x < age.length; x++) {
System.out.println("Age: " + age[x]);
}
}
Come crei un metodo come questo con un'eccezione, che richiede un elenco di matrici come argomento invece di un array?
Grazie. - Krishna