Java / Constructor
How to Initialize class with Class.forName() that has parameterized constructor?
Use Class.getConstructor() and call Constructor.newInstance() method.
For example, take the below constructor for Employee class which take 2 arguments.
public Employee(int empId, String name) { }
We need to invoke getConstructor method by passing argument values as shown below.
Constructor empC = Class.forName("Employee").getConstructor(Integer.TYPE, String.class); Employee employee= (Employee) empC.newInstance(345, "John Smith");
Dogecoin! Earn free bitcoins up to $250 now by signing up.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
