史上最简单的一道面试题!坑人吧

Posted ttzzyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了史上最简单的一道面试题!坑人吧相关的知识,希望对你有一定的参考价值。

把下面a,b值互换,使打印结果为a=2,b=1.

import java.lang.reflect.Field;

/**
 * Created by 70416 on 2018/4/7.
 */
public class App {
    public static void swap(Integer i1,Integer i2) throws NoSuchFieldException, IllegalAccessException {
      .....
    }
    public static void main(String[] args) throws NoSuchFieldException, IllegalAccessException {
        Integer a=1,b=2;
        System.out.println("开始a="+a+",b="+b);
        swap(a,b);
        System.out.println("结束a="+a+",b="+b);
    }
}

技术分享图片

Field field = Integer.class.getDeclaredField("value");
field.setAccessible(true);
int tmp = i1.intValue();    
field.set(i1,i2.intValue());
field.set(i2,tmp);

技术分享图片
技术分享图片

import java.lang.reflect.Field;

/**
 * Created by 70416 on 2018/4/7.
 */
public class App {
    public static void swap(Integer i1,Integer i2) throws NoSuchFieldException, IllegalAccessException {
        Field field = Integer.class.getDeclaredField("value");
        field.setAccessible(true);
        Integer tmp = new Integer(i1.intValue());
        // int tmp = i1.intValue();    //Integer -127----128里的值这个就不行,指针指向了缓存里的值。
        field.set(i1,i2.intValue());
        field.set(i2,tmp);

    }
    public static void main(String[] args) throws NoSuchFieldException, IllegalAccessException {
        Integer a=1,b=2;
//        System.out.println(a==b); //Integer -127----128里的相同值,答案为true,超出缓存为false。
        System.out.println("开始a="+a+",b="+b);
        swap(a,b);
        System.out.println("结束a="+a+",b="+b);
    }
}

技术分享图片

以上是关于史上最简单的一道面试题!坑人吧的主要内容,如果未能解决你的问题,请参考以下文章

一道号称“史上最难”的java面试题引发的线程安全思考

一道号称“史上最难”的java面试题引发的线程安全思考

优普分享丨史上最难的一道Java面试题

崩溃!史上最难的一道Java面试题来了....

历史上最简单的一道Java面试题,但无人能通过

用一道坑人的面试题来谈谈函数式编程