Get contructors in Java
Description
The following code shows how to get contructors.
Example
//w w w .j av a2 s .c o m
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class Main {
public static void main(String args[]) {
try {
Class c = Class.forName("java.awt.Dimension");
System.out.println("Constructors:");
Constructor constructors[] = c.getConstructors();
for (int i = 0; i < constructors.length; i++) {
System.out.println(" " + constructors[i]);
}
} catch (Exception e) {
System.out.println("Exception: " + e);
}
}
}
The code above generates the following result.