您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }