I have a constructor that expects a nested array of doubles like this:
public class Thing {
public Thing (double[][] doubles) {
}
}
I would like to overload the constructor with a default constructor that takes no arguments like this:
public Thing () {
this(/* TODO */);
}