据我所知,构造函数什么都不返回,甚至不返回 void ,
并且
return ;
在任何方法内部都意味着返回 void 。
所以在我的程序中
public class returnTest {
public static void main(String[] args) {
returnTest obj = new returnTest();
System.out.println("here1");
}
public returnTest ()
{
System.out.println("here2");
return ;
}
}
我在打电话
return;
这将返回 VOID,但构造函数不应该返回任何东西,程序编译得很好。
请解释 。