How do I get constructors of a class object?
Category: java.lang.reflect, viewed: 2721 time(s).
Below is an example that showing you how to get constructors of a class object. In the code below we get the constructors by calling the Class.getDeclaredConstructors() or the Class.getConstructor(Class[]) method.
package org.kodejava.example.reflect;
import java.lang.reflect.Constructor;
public class GetConstructors {
public static void main(String[] args) {
Class clazz = String.class;
//
// Get all declared contructors and iterate the constructors to get their
// name and parameter types.
//
Constructor[] constructors = clazz.getDeclaredConstructors();
for (Constructor constructor : constructors) {
String name = constructor.getName();
System.out.println("Constructor name= " + name);
Class[] paramterTypes = constructor.getParameterTypes();
for (Class c : paramterTypes) {
System.out.println("Param type name = " + c.getName());
}
System.out.println("----------------------------------------");
}
//
// Getting a specific constructor of the java.lang.String
//
try {
Constructor constructor = String.class.getConstructor(new Class[] {String.class});
System.out.println("Constructor = " + constructor.getName());
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
}
Download Hundreds of Complimentary Industry Resources
Get hundreds of popular Industry magazines, white papers, webinars, podcasts, and more;
all available at no cost to you. With more than 600 complimentary offers, you'll find
plenty of titles to suit your professional interests and needs.
Click Here and Sign up today!