Soy un chico de C ++ que está aprendiendo Java. Estoy leyendo Effective Java y algo me confundió. Dice nunca escribir código como este: String s = new String("silly"); Porque crea Stringobjetos innecesarios . Pero, en cambio, debería escribirse así: String s = "No longer silly"; Ok bien...