摘要:
https://www.javatpoint.com/java-operator-precedence 括号(parentheses)最优先 = += -= *= /= %= 在最底层 阅读全文
posted @ 2022-09-07 19:54
月窀
阅读(104)
评论(0)
推荐(0)
摘要:
二维数组长度 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 二维数组的第 阅读全文
posted @ 2022-09-07 09:56
月窀
阅读(61)
评论(0)
推荐(0)