Ejemplo: lista de arrays de caracteres
import java.util.ArrayList;
public class Test{
String words = new String("HELLO GOODBYE!");
ArrayList<Character> sample = new ArrayList<Character>();
for(int i = 0; i<words.length(); i++){
sample.add(words.charAt(i));
}
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)