I need to write a java method which takes a class (not an object) and then creates an ArrayList with that class as the element of each member in the array. Pseudo-code example:
public void insertData(String className, String fileName) {
ArrayList<className> newList = new ArrayList<className>();
}
How can I accomplish this in Java?
Aucun commentaire:
Enregistrer un commentaire