欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java自定义一个异常类NoThisSongException和Player类

程序员文章站 2022-07-10 17:51:13
作者说:这个实验用到了自定义异常类的知识,练习了throws、throw、try...catch的使用方法。实验的要求还是比较详细的,比较好完成。一、实验要求二、运行效果截图1.输入的数据符合要求2.输入的数据不符合要求三、代码示例import java.util.Scanner;public class Test6 { public static void main(String[] args) { Player p=new Pla...

作者说:

这个实验用到了自定义异常类的知识,练习了throws、throw、try...catch的使用方法。

实验的要求还是比较详细的,比较好完成。

一、实验要求

Java自定义一个异常类NoThisSongException和Player类

二、运行效果截图

1.输入的数据符合要求

Java自定义一个异常类NoThisSongException和Player类

2.输入的数据不符合要求

Java自定义一个异常类NoThisSongException和Player类

三、代码示例

import java.util.Scanner;

public class Test6 {
    public static void main(String[] args) {
        Player p=new Player();//创建Player对象p。
        Scanner s=new Scanner(System.in);
        System.out.println("");
        System.out.println("author---Henan University.software engineering.李思佳");
        System.out.print("请输入您想要播放的歌曲序号(1~10):");
        try{
            int a=s.nextInt();
            p.play(a);
            System.out.println("您现在所播放的歌曲序号为:"+a);
        }catch(NoThisSongException e){
            System.out.println(e.getMessage());
        }
    }
}

class NoThisSongException extends Exception{//自定义异常类NoThisSongException,继承Exception类。
    public NoThisSongException(){//类中的无参构造方法。
        super();
    }
    public NoThisSongException(String s){//类中的String参数构造方法。
        super(s);
    }
}
class Player{//自定义Player类
    public void play(int index) throws NoThisSongException{//play()方法中使用了自定义异常。
        if(index>10||index<=0) {//抛出NoThisSongException异常。
            throw new NoThisSongException("您播放的歌曲不存在哦!");//调用了自定义异常类中的有参构造方法。
        }
    }
}

 

本文地址:https://blog.csdn.net/m0_52229815/article/details/109864508

相关标签: Java exception