2

我在我的 java 程序中使用毫秒并将其转换为秒。在我的方法执行此操作后,它以长格式返回秒数。

System.out.println("[" + threadID + "]" + " " + "SeqSum res=" + grandTotal + " secs=" + stopTime);

我使用变量 stopTime 来显示秒数。

我的输出目前是 secs=0 它需要是 secs=0.000

我需要使用 system.out.println() 或 system.out.format() 将其显示到小数点后 3 位

如何改写我的打印语句,以便获得输出 secs=0.000?

请帮忙

4

1 回答 1

7

毫秒很长,没有小数位。您需要将它们除以 1000.0f 以将它们分成小数秒。然后您将需要使用格式方法将它们限制为小数点后 3 位。

就像是:

   final long ms;
   final float sec;

   ms = System.currentTimeMillis();
   sec = ms / 1000.0f;
   System.out.format("%.3f", sec);
于 2012-05-15T03:41:31.470 回答