Estoy buscando un método limpio y eficiente para declarar múltiples variables del mismo tipo y del mismo valor. En este momento tengo:
String one = "", two = "", three = "" etc...
Pero estoy buscando algo como:
String one,two,three = ""
¿Es esto algo que es posible hacer en Java? Teniendo en cuenta la eficiencia.