3

我尝试使用此代码(Update m_set 在 for 循环中使用,它通过几个使用不同类型参数的方法。如果我要添加例如 int.class in getMethod,我会在一次迭代后得到错误,因为下一个方法需要 String .class.是否可以使用反射来解决此类问题?):

Method m_set = product.getClass().getMethod(method_name);
m_set.invoke(product, method_value);

我收到此错误:

 Exception in thread "main" java.lang.NoSuchMethodException: test.NormalChair.setHeight()
        at java.lang.Class.getMethod(Class.java:1655)
        at test.ProductTrader.create(ProductTrader.java:68)
        at test.Test.main(Test.java:32)

错误地表明它试图在我使用此方法的类中查找方法。但是该方法在父类中,并且是公共方法。我知道如果我会使用getDeclaredMethod,它会给出类似的错误,但是为什么它会给出这个错误getMethod呢?

我的班级有这个方法:

public abstract class AbstractChair {
    public String name;
    public int height;
    public AbstractChair() {
    }

    public AbstractChair(String name, int height){
        this.name = name;
        this.height = height;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }   
}

我尝试使用此方法的班级:

public class NormalChair extends AbstractChair {
    public NormalChair() {
        super();
    }

    public NormalChair(String name, int height) {
        super(name, height);
    }


    // Copy constructor
    public NormalChair(NormalChair chair) {
      this(chair.getName(), chair.getHeight());
    }

}

更新2

如果我做这样的事情:

if(method_name == "setHeight"){
  Method m_set = product.getClass().getMethod(method_name, int.class);
  m_set.invoke(product, method_value);
}
else if (method_name == "setName")
{
  Method m_set = product.getClass().getMethod(method_name, String.class);
  m_set.invoke(product, method_value);
}

然后错误消失。有人可以提出更通用的方法吗?

4

2 回答 2

10

您似乎忘记传递您的方法所需的参数类型(请记住,方法可以用不同的参数类型重载)。看看你的代码,那里没有setHeight()方法,但是setHeight(int). 你应该尝试类似的东西

Method m_set = product.getClass().getMethod(method_name,method_value.getClass());
m_set.invoke(product, method_value);

由于您可能会遇到原始类型的问题,因此您可以使用其他方式。假设您的类中只有一个同名的方法,您可以遍历所有公共方法,将其名称与您正在查找的方法进行比较,然后使用您想要的参数调用它。就像是

Method[] methods = product.getClass().getMethods();
for (Method m : methods){
    System.out.println(m);
    if (m.getName().equals("setHeight")){
        m.invoke(product, method_value);
        break;
    }
}

另一种可能更好的方法是使用java.bean包中的类,例如PropertyDescriptor. 感谢这个类,您可以找到特定属性的 getter 和 setter。请注意,属性 for setHeightisheight所以你需要像这样使用它

Method setter = new PropertyDescriptor("height", product.getClass()).getWriteMethod();
setter.invoke(product, method_value);
于 2013-11-11T19:13:44.047 回答
4

使用product.getClass().getMethod("setHeight", int.class);. 您必须传递方法参数类型以定位方法签名。

于 2013-11-11T19:13:41.380 回答