用java 自定义一个异常类NoThisSoundException和Player类,在Player类中的Play方法中使用自定义异常,要求如下: (1) NoThisSoundException继承Exception类,类中有一个无参和一个接收一个String类型参数的构造方法,构造方法中都使用super关键字调用父类的构造方法。 (2) Player类中定义一个Play(int index)方法,方法接收一个int类型的参数,表示播放歌曲的索引,当index>10时,Play()方法用throw关键字抛出NoThisSoundException异常,创建异常对向时,调用有参的构造方法,传入“你播放的歌曲不存在”。 (3) 在测试类Test01中创建Player对象,并调用Play()方法测试自定义的NoThisSoundException异常,使用try…catch语句捕获异常,调用NoThisSoundException的getMessage()方法打印出异常信息。
时间: 2023-06-03 15:04:47 浏览: 166
好的,我明白了您的要求。以下是Java代码:
NoThisSoundException.java:
```
public class NoThisSoundException extends Exception {
public NoThisSoundException() {
super();
}
public NoThisSoundException(String message) {
super(message);
}
}
```
Player.java:
```
public class Player {
public void Play(int index) throws NoThisSoundException {
if (index > 10) {
throw new NoThisSoundException("你播放的歌曲不存在");
}
}
}
```
Test01.java:
```
public class Test01 {
public static void main(String[] args) {
Player player = new Player();
try {
player.Play(11);
} catch (NoThisSoundException e) {
System.out.println(e.getMessage());
}
}
}
```
运行结果为:
```
你播放的歌曲不存在
```
阅读全文