gpt4 book ai didi

java - Java 中 方法可以执行多少次?

转载 作者:行者123 更新时间:2023-12-01 18:12:36 26 4
gpt4 key购买 nike

对于特定类,一个方法只执行一次是否正确?

最佳答案

我创建了测试类并按如下方式引用它

  • 运算符
  • 反射(reflection)

< clinit > block 仅被引用 1 次

public class ClinitTest {

public static void main(String[] args) throws ClassNotFoundException {
Test b = new Test(); // initialization through NEW operator
Class<Test> bcp2 =(Class<Test>) Class.forName("Test"); //initialisation through reflection
}

}

class Test
{
public static String name="Test";
public Test()
{
System.out.println("In Constructor");
}

static
{
System.out.println("In Static");
}

{
System.out.println("In Instance");
}
}

关于java - Java 中 <clinit> 方法可以执行多少次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60439461/

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