易错面试题
Posted koma-vv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了易错面试题相关的知识,希望对你有一定的参考价值。
package chapter7;
/*
* 面试题
*/
public class TestArray04 {
public static void main(String[] args) {
int[] a = { 1, 2, 3 };
int[] b = a;
b[0] = 10;
System.out.println(a[0]);
}
}
--------------打印--------------------
10
以上是关于易错面试题的主要内容,如果未能解决你的问题,请参考以下文章
数组和指针关于「sizeof」 「strlen 」经典易错面试题