To create an instance of a class, you invoke a special method called a constructor. Like methods, constructors can be overloaded, and are distinguished from one another by their signatures.
You can get information about a class's constructors by invoking the
You can also create a new instance of the
The sample program that follows prints out the parameter types for each constructor in the
You can get information about a class's constructors by invoking the
getConstructors method, which returns an array of Constructor objects. Using the methods provided by the Constructor class, you can determine the constructor's name, set of modifiers, parameter types, and set of throwable exceptions.You can also create a new instance of the
Constructor object's class with the Constructor.newInstance method. You'll learn how to invoke Constructor.newInstance in Manipulating Objects. The sample program that follows prints out the parameter types for each constructor in the
Rectangle class. The program performs the following steps: - It retrieves an array of
Constructorobjects from theClassobject by callinggetConstructors. - For every element in the
Constructorarray, it creates an array ofClassobjects by invokinggetParameterTypes. TheClassobjects in the array represent the parameters of the constructor. - By calling
getName, the program fetches the class name for every parameter in theClassarray created in the preceding step.
import java.lang.reflect.*;
import java.awt.*;
class SampleConstructor {
public static void main(String[] args) {
Rectangle r = new Rectangle();
showConstructors(r);
}
static void showConstructors(Object o) {
Class c = o.getClass();
Constructor[] theConstructors = c.getConstructors();
for (int i = 0; i < theConstructors.length; i++) {
System.out.print("( ");
Class[] parameterTypes =
theConstructors[i].getParameterTypes();
for (int k = 0; k < parameterTypes.length; k ++) {
String parameterString = parameterTypes[k].getName();
System.out.print(parameterString + " ");
}
System.out.println(")");
}
}
}
In the first line of output generated by the sample program, no parameter types appear because that particular Constructor object represents a no-argument constructor. In subsequent lines, the parameters listed are either int types or fully-qualified object names. The output of the sample program is as follows: ( ) ( int int ) ( int int int int ) ( java.awt.Dimension ) ( java.awt.Point ) ( java.awt.Point java.awt.Dimension ) ( java.awt.Rectangle )
No comments:
Post a Comment