Monday, September 12, 2011

JAVA CODE TO GET ALL MEMBERS (Variables, Methods) OF A CLASS


import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;

class Testing{

int rollno;
String name;

public Testins(){}

public Testins(int num){}

public Testins(String str){}

public void displaData(){
}

public void intputData(){
}

}


public class ClassInfo {

  public static void main(String[] RK) {

    try {

      // Creates an object of type Class which contains the information of
      // the class Testing defines above.
      Class cl = Class.forName("Testing");

      // getDeclaredFields() returns all the constructors of the class.
      Constructor cnst[] = cl.getConstructors();

      // getFields() returns all the declared fields of the class.
      Field fld[] = cl.getDeclaredFields();

      // getMethods() returns all the declared methods of the class.
      Method mtd[] = cl.getMethods();
      System.out.println("Name of the Constructors of the String class");

      for (int i = 0; i < cnst.length; i++) {
        System.out.println(cnst[i].getName());
      }

      System.out.println("Name of the Declared fields");

      for (int i = 0; i < fld.length; i++) {
        System.out.println(fld[i].getName());
      }

      System.out.println("Name of the Methods");

      for (int i = 0; i < mtd.length; i++) {
        System.out.println(mtd[i].getName());
      }

    } catch (ClassNotFoundException e) {
      e.printStackTrace();
    }
  }

}

No comments:

Post a Comment