摘要:
一个数组参数抛出的问题当时的情况是这样的: public static void test(Integer[] x){ x[1] = 99; } public static void main(String[] args) { Integer[] temp1 = new Integer[] {3, 4}; test(temp1);// 1 Integer[] temp2 = {5, 6}; test(temp2);// 2 } Normal 0 ... 阅读全文
posted @ 2012-08-02 00:23
每当变幻时
阅读(1451)
评论(0)
推荐(0)