摘要:
https://www.javatpoint.com/java-operator-precedence 括号(parentheses)最优先 = += -= *= /= %= 在最底层 阅读全文
摘要:
二维数组长度 char[][] paul = new char[2][5]; int n1 = paul[1].length; System.out.println(n1); // 5 int n2 = paul.length; System.out.println(n2); // 2 二维数组的第 阅读全文