反射,转换为未知对象



基本上,我扫描JFrame中的所有组件,检查它是否有setTitle(String arg0)方法,如果有,则将其标题设置为"foo"。然而,为了设置它的标题,我需要将它强制转换为一个合适的对象。

    public void updateTitle(Container root){
        for (Component c : root.getComponents()){
            String s = "";
            for (Method m : c.getClass().getDeclaredMethods()){
                s += m.getName();
            }
            if (s.contains("setTitle")){                
                c.setTitle("foo"); //Here is where I need the casting 
            }
            if (c instanceof Container){
                updateTitle((Container) c);
            }
        }           
    }

问题是,我不知道它是什么类。有没有办法将它转换为自身,或者我应该尝试做其他事情?

当您有一个Method时,您可以使用invoke()来调用它:

 for (Method m : c.getClass().getDeclaredMethods()){
     if( "setTitle".equals( m.getName() ) {
         m.invoke( c, "foo" ); // == c.setTitle("foo"); but without the casts
     }
 }

你可以通过反射调用setTitle(),而不是通过强制转换

for (Method m : c.getClass().getDeclaredMethods()){
    if (m.getName().equals("setTitle")) {
        m.invoke(c, "foo");
    }
}

删除所有其他不必要的代码。您的字符串s是无用的(因为无论如何,附加所有方法名称并检查contains是没有意义的)。如果类有setTitle方法会怎样?)

相关内容

  • 没有找到相关文章

最新更新