特别是在这个例子中:
public Example(String name) { this.name = name; } public Example(SomeOther other) { this.other = other; }
假设我想使用第一个构造函数实际构造一个新的Example(null).是否有一些语法允许我这样做?
如上所述,这样做表明设计不好,我同意.您将尝试编写防弹代码,这种模糊不可能或无关紧要.