1 package test1; 2 3 public class ExprEdit5 { 4 int value; 5 ExprEdit5()6 public ExprEdit5() { value = 0; } 7 ExprEdit5(String s)8 public ExprEdit5(String s) { value = 1; } 9 k1()10 public int k1() { 11 ExprEdit5 e = new ExprEdit5(); 12 return e.value; 13 } 14 } 15