Is it possible to write a method that could create instances of any specified type?
I think java generics should help, so it might be something like this:
public <U> U getObject(Class klass){
//...
}
Could anyone help me?
|
|
You can get a constructor from a Obviously, this is just as ugly as Peter's answer. |
||||
|
|
There are few `problems' with this method though:
See Class.newInstance() documentation for details. |
|||||||||
|
|
I strongly suggest using a factory interface if at all possible, rather than abusing reflection.
|
|||||||
|