国内某知名公司笔试题
Posted zhaozheng7758
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了国内某知名公司笔试题相关的知识,希望对你有一定的参考价值。
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO 自动生成方法存根
Integer i1 = new Integer(1);
Integer i2 = i1;
doSomething(i2);
System.out.println(i1.intValue());
System.out.println(i1==i2);
}
public static void doSomething(Integer i3){
i3 = new Integer(2);
}
}
答案:
1
true
以上是关于国内某知名公司笔试题的主要内容,如果未能解决你的问题,请参考以下文章