2024-06-27 16:53:01 +00:00
|
|
|
public class TestConstructorOverload {
|
|
|
|
|
2024-06-28 07:20:03 +00:00
|
|
|
public int a = 42;
|
|
|
|
|
2024-06-27 16:53:01 +00:00
|
|
|
TestConstructorOverload() {
|
2024-06-28 07:20:03 +00:00
|
|
|
// nothing here, so a will assume the default value 42.
|
2024-06-27 16:53:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TestConstructorOverload(int a) {
|
2024-06-28 07:20:03 +00:00
|
|
|
this.a = a;
|
2024-06-27 16:53:01 +00:00
|
|
|
}
|
|
|
|
}
|