用其他方法启动各种方法

时间:2018-09-28 09:48:16

标签: java methods

我想用Scanner启动其他方法和其他方法。 当机器问这些练习时,我想用敲击答案回答,当我说练习(方法)时,机器用我的敲击答案启动此方法。 范例: 练习? 我-“ W34” (机器启动方法W34) 对不起我的英语不好 谢谢CODE

2 个答案:

答案 0 :(得分:0)

您必须使用反射。

注意:有关更多信息,请编写有问题的代码,我会相应地对其进行更改

obj.getClass().getMethod(methodName).invoke.invoke(obj);

答案 1 :(得分:0)

对不起,我不是专业人士,对不起代码,这是我在此站点上遇到的第一个问题,我只进行了一些练习,因为有很多练习。

代码:

公共类主要{

public static String CapitalizeEachWord(String st) {
    String result = "";
    st = st.replaceAll("() ([A-Z])", "$1 $2");
    String[] words = st.split(" ");
    for (String word : words)
        if (word.length() > 0)
            result += Character.toUpperCase(word.charAt(0)) + word.substring(1) + " ";
    return result;
}



public static String Scann() {
    Scanner in = new Scanner(System.in);
    System.out.println("Wich exercises? (W + exNumb)");
    int x = in.nextInt();






    return null;
}

public static String W1() {
    System.out.println("Hello");
    System.out.println("Antoine Sidot!");
    System.out.println();
    return null;
}
public static String W2() {
    int result = 74 + 36;
    System.out.println(result);
    return null;
}
public static String W3() {
    System.out.println(50/3);
    return null;
}
public static String W4() {
    System.out.println(-5 + 8 * 6);
    System.out.println((55 + 9) % 9);
    System.out.println(20 + -3*5 / 8);
    System.out.println(5 + 15 / 3 * 2 -8 % 3);
    return null;
}
public static String W5() {
    int nb1 = 25;
    int nb2 = 5;
    System.out.println(nb1 + " x " + nb2 + " = " + nb1*nb2);
    return null;
}

}