1 package test1; 2 3 public class ExprEdit3 { 4 int value; 5 f()6 private int f() { return 3; } 7 ExprEdit3()8 public ExprEdit3() { value = 0; } 9 ExprEdit3(ExprEdit3 e, int i)10 public ExprEdit3(ExprEdit3 e, int i) { value = i; } 11 k1()12 public int k1() { return new ExprEdit3(null, f()).value; } 13 } 14