You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. public class A{
  2. public static void main(String []argv) {
  3. A a = new A();
  4. a.m1();
  5. a.m2();
  6. a.m3();
  7. }
  8. public void m1() {}
  9. public void m2() {}
  10. public void m3() {}
  11. }