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