13/08/2014 第一个technical全职面
Java:
Integer i = 10;
incr(i);
// Is i now 11?
void incr(Integer val) {
val ++;
return;
}
int i = 10;
incr(i);
// Is i now 11?
void incr(int val) {
val ++;
return;
}
int是primitive type,属于immutable的
Integer也是immutable的
java始终是pass by value的
感触:基本功非常重要,以及刷题是王道啊