调用方法时执行装箱

时间:2018-03-13 11:48:40

标签: java methods boxing

为什么方法不处理原始类型的装箱?

/* package whatever; // don't place package name! */

import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodType;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static int i(int i1, Integer i2){
        return i1 + i2;
    }
    public static void tm() throws Throwable {
        MethodHandles.Lookup lu = MethodHandles.publicLookup();
        MethodType mt = MethodType.methodType(int.class, int.class, int.class);
        MethodHandle mh = lu.findStatic(Ideone.class, "i", mt);
        System.out.println(mh.invoke(1, 2));
    }

    public static void main(String[] args) throws Throwable {
        tm();
    }

}

https://ideone.com/KmvNkx

这是我试过的代码。它引发了一个例外。我希望MethodHandle::invoke,而非invokeExact执行asType调整,包括装箱转换。怎么了?

1 个答案:

答案 0 :(得分:1)

你在这里遇到两个问题:

1)您的课程不公开,publicLookup()需要。因此,将您的类声明更改为:

public class Ideone
{

2)自动装箱/拆箱是编译和运行时的一种便利,它隐藏了原始int和类Integer不同的事实。您对该方法的查找正在寻找一种名为" i"返回一个原始int并有两个主要的int参数。事实并非如此。因此,将查找更改为与函数声明匹配的符号:

MethodType mt = MethodType.methodType(int.class, int.class, Integer.class);
MethodHandle mh = lu.findStatic(Ideone.class, "i", mt);