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.

ExprEdit.java 245B

1234567891011
  1. package test1;
  2. public class ExprEdit {
  3. public int k1(int j) { return j; }
  4. public static int k2(int j) { return j; }
  5. public void k3(int j) { System.out.println("k3: " + j); }
  6. public int k0() { k3(1); return k1(3) + k2(7); }
  7. }