Joh*_*erg 15
例如,
MyInterfaceOrAbstractClass.class.getDeclaredMethods();
Run Code Online (Sandbox Code Playgroud)
Class clazz = Something.class;
Method[] methods = clazz.getDeclaredMethods();
for (Method method : methods) {
// do what you have to do with the method
System.out.println(method.getName());
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
11967 次 |
| 最近记录: |