本帖最后由 001可望成功 于 2014-6-29 14:26 编辑
不是,比如RunTime类,他没有构造方法,只能通过RunTime,getRuntime()返回自身对象,
在java源码中是这样写的:
private static Runtime currentRuntime = new Runtime();
public static Runtime getRuntime() {
return currentRuntime;
}
private Runtime() {}
所以,他应该调用的是自身的私有构造方法
|