For Java: You might mean the constructor without parameters.
If so you can use the following code:
public class MyClass {
// no params constructor
public MyClass() {
...
}
// parametrized constructor
public MyClass(int p1, String p2) {
this();
}
}
Hope this helps