位置:首页 > 软件操作教程 > 编程开发 > Java > 问题详情

Java 常见异常NoSuchMethod Exception

提问人:刘旭39发布时间:2020-11-30

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());

}

}

}

D`U8R}B))GOG5M5G967M8AB.png

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部