我想输入java类的路径作为输入,在输出中它应该给我该类中的方法列表。我该如何进行?谁能指导我。

最佳答案

Class personClass = Person.class;

//Get the methods
Method[] methods = personClass.getDeclaredMethods();

//Loop through the methods and print out their names
for (Method method : methods)
{
    System.out.println(method.getName());
}

关于java - 如何从Java中的类获取方法列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9309513/

10-12 01:31