12

我试图在java中实现某种反射。我有:

class P {
  double t(double x) {
    return x*x;
  }

  double f(String name, double x) {
    Method method;
    Class<?> enclosingClass = getClass().getEnclosingClass();
     if (enclosingClass != null) {
        method = enclosingClass.getDeclaredMethod(name, x);
        try {
          method.invoke(this, x);
        } catch (Exception e) {
          e.printStackTrace();
        }

    }
}

class o extends P {
  double c() { 
    return f("t", 5);
  }
}

如何从 new o().c() 中获取价值?

4

2 回答 2

21

将虚拟类供您参考,您可以相应地更改代码 -

import java.lang.reflect.Method;

public class Dummy {

    public static void main(String[] args) throws Exception {
        System.out.println(new Dummy().f("t", 5));
    }

    double t(Double x) {
        return x * x;
    }

    double f(String name, double x) throws Exception {
        double d = -1;
        Method method;
        Class<?> enclosingClass = getClass();
        if (enclosingClass != null) {
            method = enclosingClass.getDeclaredMethod(name, Double.class);
            try {
                Object value = method.invoke(this, x);
                d = (Double) value;
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

        return d;
    }
}

只运行这个类。

于 2013-03-29T04:17:24.770 回答
5

invoke()方法返回该方法执行后返回的对象!所以你可以试试...

Double dd = (Double)method.invoke(this,x);
double retunedVal = dd.doubleValue();
于 2013-03-29T04:17:33.417 回答