class testx
{
public testx()
{
long startTime = System.nanoTime();
System.out.println((System.nanoTime() - startTime));
}
public static void main(String args[])
{
new testx();
new testx();
new testx();
}
}
我总是得到类似的结果7806 660 517
。为什么第一次通话的时间是其他通话的 10 倍?