1
Posso passare un array come argomenti a un metodo con argomenti variabili in Java?
Mi piacerebbe essere in grado di creare una funzione come: class A { private String extraVar; public String myFormat(String format, Object ... args){ return String.format(format, extraVar, args); } } Il problema qui è che argsè trattato come Object[]nel metodo myFormat, e quindi è un singolo argomento per String.format, mentre mi …