blob: 7294643d8f4a47878499de3106008cdb171a68ff [file] [log] [blame]
package p2;
import java.lang.reflect.Method;
public class Main {
public static void main(String[] args) throws NoSuchMethodException, SecurityException {
Method m = Main.class.getDeclaredMethod("Name", String[].class);
System.out.println(m);
}
}