14 lines
246 B
Java
14 lines
246 B
Java
|
public class TestConstructorOverload {
|
||
|
|
||
|
TestConstructorOverload() {
|
||
|
}
|
||
|
|
||
|
TestConstructorOverload(int a) {
|
||
|
}
|
||
|
|
||
|
public void test() {
|
||
|
int a = 3;
|
||
|
TestConstructorOverload test = new TestConstructorOverload(a);
|
||
|
}
|
||
|
}
|