The getConstructors() is used to get the list of public constructors of the Class.
Example
Rectangle.java
package com.w3spoint; public class Rectangle { private int defaultLength = 10; private int defaultWidth = 5; public void drawShape(String color) { System.out.println("Rectangle create with following properties: "); System.out.println("Length: " + defaultLength); System.out.println("Width: " + defaultWidth); } } |
ReflectionTest.java
package com.w3spoint; import java.util.Arrays; public class ReflectionTest { public static void main(String args[]){ try { Class c=Class.forName("com.w3spoint.Rectangle"); System.out.println(Arrays.toString(c.getConstructors())); } catch (Exception e) { e.printStackTrace(); } } } |
Output
[public com.w3spoint.Rectangle()] |
Please Share