黑马程序员技术交流社区
标题:
异常的简单应用自定义异常判断歌曲播放是否存在
[打印本页]
作者:
薛大千
时间:
2015-4-15 23:11
标题:
异常的简单应用自定义异常判断歌曲播放是否存在
/*
自定义异常判断歌曲播放是否存在
*/
class PlayerTest
{
public static void main(String[] args) //实验测试
{
try{Player player1=new Player();
player1.play(9);
}
catch (NoThisSoundException e)
{System.out.println(e.getMessage());
}
}
}
class NoThisSoundException extends Exception//自定义异常
{ NoThisSoundException()
{super();}
NoThisSoundException(String message)
{super(message);
}
}
class Player //
{public void play(int index)throws NoThisSoundException{
if (index<10)
throw new NoThisSoundException("您播放的歌曲不存在") ;
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2