Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;

public class Main {
    public static void main(String[] argv) throws Exception {
        Constructor[] constructors = String.class.getDeclaredConstructors();
        for (int i = 0; i < constructors.length; i++) {
            Constructor c = constructors[i];
            Class[] paramTypes = c.getParameterTypes();
            String name = c.getName();
            System.out.print(Modifier.toString(c.getModifiers()));
            System.out.print(" " + name + "(");
            for (int j = 0; j < paramTypes.length; j++) {
                if (j > 0)
                    System.out.print(", ");
                System.out.print(paramTypes[j].getCanonicalName());
            }
            System.out.println(");");
        }
    }
}