Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
class Test { void method1() { System.out.println("method1()"); } void method2() { this.method1(); } } public class MyClass { public static void main(String args[]) { Test t = new Test(); t.method2(); } } /* run: method1() */