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.

ExprEdit5.java 222B

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