Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to use Class.newInstance() but the class I am instantiating does not have a nullary constructor. Therefore I need to be able to pass in constructor arguments. Is there a way to do this?

share|improve this question

4 Answers

Class.getDeclaredConstructors(types list).newInstance(args list);

Edit: according to the comments seems like pointing class and method names is not enough for some users. For more info take a look at the documentation for getting constuctor and invoking it.

share|improve this answer
7  
Answer doesn't say how you pass the args, or show an example. It's just a guess. – djangofan Jul 24 '11 at 0:52

Class.getDeclaredConstructor(String.class).newInstance("HERESMYARG");

share|improve this answer

You can get other constructors with getConstructor(...).

share|improve this answer

Do not use Class.newInstance(); see this thread: Why is Class.newInstance() evil?

Like other answers say, use Constructor.newInstance() instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.