```public static boolean isMethodExist(Class<?> clazz, String methodName) { Method[] methods = clazz.getDeclaredMethods(); for (Method method : methods) { if (method.getName().equals(methodName)) { return true; } } return false; }```为这段代码添加引入包
时间: 2023-12-14 09:39:29 浏览: 55
java中的Class类和反射.docx
需要引入以下包:
```
import java.lang.reflect.Method;
```
阅读全文