This question already has answers here:
Java 7 underscore in numeric literals

(8个答案)


7年前关闭。




我已经在Java7中阅读到了,我们现在可以编写以下有趣的语句:
public static boolean isZero(int O_O){
  return O_O == 0_0;
}

问题是:在这种情况下0_0到底意味着什么?

最佳答案

仅出于可读性目的,Java 7中允许在数字文字中使用下划线字符。来自javadocs:

关于java - Java 7中0_0的含义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17929545/

10-12 02:42