question about difference beween forms
- by davit-datuashvili
hi i have question what is different between
public static void printMax( double... numbers) {
and
public static void printmax(double numbers[])
?
is is double...numbers the same as double numbers[]?