Getting the Name of a Member Object in Java
Description
The following code shows how to getting the Name of a Member Object.
Example
/* w w w . j a v a2 s . c o m*/
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class Main {
public static void main(String[] argv) throws Exception {
Class cls = java.lang.String.class;
Method method = cls.getMethods()[0];
Field field = cls.getFields()[0];
Constructor constructor = cls.getConstructors()[0];
String name;
name = cls.getName();
System.out.println(name);
name = cls.getName() + "." + field.getName();
System.out.println(name);
name = constructor.getName();
System.out.println(name);
name = cls.getName() + "." + method.getName();
System.out.println(name);
}
}
The code above generates the following result.