反射使用

    Class c = Class.forName(str);

       Object o = c.newInstance();

       Method[] methods = c.getMethods();

       for(Method method: methods) {

           //System.out.println(method.getName());

           if(method.getName().equals("mm")) {

               method.invoke(o);

           }

你可能感兴趣的:(C++,c,C#)