默认构造函数调用InterfaceConstructor,返回null

ted*_*ted 4 java

我试着这样做:

public class Demo{
public Demo() {
    Demo(null)
}
public Demo(Interface myI) {
    ...
}
}
Run Code Online (Sandbox Code Playgroud)

我想Demo()构造函数调用Demo(Interface)构造函数,null但是在我调用的行上,eclipse抱怨"Demo(null)未定义" Demo(null).我需要改变什么?

MBy*_*ByD 8

它不应该Demo(null),但this(null)