我有一门课abc
如下
public class Abc<T> {
int arg1;
int arg2;
int arg3;
public <T> Abc(int arg1 , int arg2 ,int arg3){
this.arg1 = arg1;
this.arg2 = arg2;
this.arg3 = arg3;
}
public <T> Abc(int arg1, int arg2){
// How to call the above the constructor by setting some value to arg3.
}
}
如何从 2 参数构造函数中调用 3 参数?