Similar to methods, reflection provides APIs to discover and retrieve the
constructors of a class and obtain declaration information such as the
modifiers, parameters, annotations, and thrown exceptions. New instances of
classes may also be created using a specified constructor. The key classes
used when working with constructors are
Class
and
java.lang.reflect.Constructor
. Common operations involving constructors are covered in the following
sections: