java - 如何获取我在Java类中拥有的所有Methods()的列表(名称)?
前任。
public class helloworld {
public static void main() {
...
}
public static void method() {
...
}
public static void anothermethod() {
...
}
}
结果将是:
method
anothermethod
可能吗?提前致谢。