gpt4 book ai didi

java - 为什么会抛出java.lang.InstantiationException?

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:39:02 25 4
gpt4 key购买 nike

<分区>

看下面的代码:

public class Outer {
public static void main(String[] args) throws Exception {
new Outer().greetWorld();
}

private void greetWorld() throws Exception {
System.out.println(Inner.class.newInstance());
}

public class Inner {
public Inner () {}
public String toString(){
return "HelloWorld";
}
}
}

为什么会抛出java.lang.InstantiationException
毕竟,嵌套类 Inner 具有 nully 构造函数。谁能解释一下?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com