In this section we describe how to retrieve method name by using the getMethods() method. Here is an example that demonstrates the use of the getMethods() method in more detail.
Getting the method name used in the Application
In this section we describe how to retrieve method name
by using the
getMethods() method. Here is an example that
demonstrates the use of the getMethods() method in more detail.
Define a class named "Fmethod" and then create an object of this class and
get the reference of java.util.Integer.class into it. Now retrieve the method
name by using the
getMethods() method.
Here is the code of the Example :
Fmethod.java:
import java.lang.reflect.*;
|
Here is the output of the Example :
C:\roseindia>javac Fmethod.java C:\roseindia>java Fmethod hashCode |