1 2 3 4 5 6 7 8
public class Code { public static void main(String []argv) { new Code().m(); } public void m() { System.out.println("Code.m()"); } }