Ron Tuffin

Resultados 1 preguntas formuladas por Ron Tuffin

Crear ArrayList a partir de una matriz

42
respuestas
4.1k
votos
1.8M
vistas

Element[] array = {new Element(1), new Element(2), new Element(3)}; ¿ Cómo convierto la variable de tipo anterior Element[]en una variable de tipo ArrayList<Element>? ArrayList<Element> arrayList = ...;