Online Java Compiler By
JavaTpoint.com
//import statements? import java.lang.reflect.Method; public class ClassgetDeclaredMethodExample2 { public static void main(String... args) throws NoSuchMethodException { Class
obj = Sample1.class; Method mthd = obj.getDeclaredMethod("Method1"); System.out.println(mthd); mthd = obj.getDeclaredMethod("Methodint", int.class); System.out.println(mthd); } private static class Sample1 { private void Method1() { } public void Methodint(int i) { } } }
Output