问各位道题目 2008-02-20 wccw303 一道程序填空题: public class Pee { public void helloYou() { System.out.println("Welcome you !!!"); } } public class Exemain { public static void main(String[] args) { String method="helloYou"; //如何通过属性method调用helloYou方法 } }