Java 常见异常NoSuchMethod Exception
NoSuchMethod Exception
java.lang.NoSuchMethod Exception是方法不存在异常,通常是程序试图通过反射来创建对象时引 发的异常。当访问或修改某一个方法时,系统无法找到该方法(一般是方法名定义错误)则会抛 出 NoSuchMethod Exception 异常。
import java.lang.reflect.Method;
//NoSuchMethod Exception异常
public class Demo {
public static void main(String[] args){
try {
Class<Cat> cls = Cat.class;
Cat obj = cls.newInstance();
Method target = cls.getDeclaredMethod("desc", String.class);
}catch (InstantiationException e) {
System.out.println("捕获异常: " + e.getClass().getName());
System.out.println("异常内容为:" + e.getMessage());
}catch(NoSuchMethodException e) {
System.out.println("捕获异常:" + e.getClass().getName());
System.out.println("异常内容为:" + e.getMessage());
}catch(IllegalAccessException e) {
System.out.println("捕获异常:"+ e.getClass().getName());
System.out.println("异常内容为:" + e.getMessage());
}
}
}
点击加载更多评论>>