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.

AddCatchForConstructor.java 220B

12345678910111213
  1. package test2;
  2. public class AddCatchForConstructor {
  3. int i;
  4. public AddCatchForConstructor() {
  5. this(3);
  6. i++;
  7. }
  8. public AddCatchForConstructor(int k) {
  9. i = k;
  10. }
  11. }