易混点 Posted on 2026-04-26 In java-confuse 参数赋值能够赋值的结构: 数组 示例: 12345678910public void test() { // 二维数组 int[][] temp = new int[1][1]; test(temp); System.out.println(temp[0][0]);}public void test(int[][] temp) { temp[0][0] = 1;}