Skip to content
Advertisement

How to pass an object type to constructor as argument and cast a variable to it (JAVA)?

I have a class that accepts a ArrayList<?> as a constructor argument:

JavaScript

I want to cast data to ArrayList<Type>, and pass Type to constructor as an argument, something like this :

JavaScript

How can i do this in Java?

Advertisement

Answer

You have to use a generic parameter, to get the class pointed by the Class instance

JavaScript

But this is not safe as you just assume every object fits the class, you’d better cast every object one by one

JavaScript

Multiple classes

JavaScript

Instanciate an object from a Class<T> type

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement