public class Test { public static void main(String... args) { int i=010; System.out.print(i); } }
输出:
8
为什么?逻辑是什么?
java
java ×1