Online Java Compiler By
JavaTpoint.com
//import statements? import java.lang.reflect.Method; public class ClassgetMethodExample2 { public static void main(String... args) throws NoSuchMethodException { Class
class1 = ClassgetMethodExample2.class; Method mthd = class1.getMethod("IntCalc", int.class); System.out.println(mthd); mthd = class1.getMethod("Work"); System.out.println(mthd); mthd = class1.getMethod("StaticMethod", String.class); System.out.println(mthd); mthd = class1.getMethod("Work"); System.out.println(mthd); } public int IntCalc(int i) {return 0;} public void Work() {} public static void StaticMethod(String s) {} }
Output