编写一个异常类MyException,再编写一个类Student,该类有一个产生异常的方法oid speak(

  编写一个异常类MyException,再编写一个类Student,该类有一个产生异常的方法public void speak(int m) throws MyException,要求参数m的值大于1000时,方法抛出一个MyException对象。最后编写主类Test,在主类的main()方法中用Student创建对象,让该对象调用speak()方法进行异常处理。

Code:
  1. class MyException extends Exception  
  2. {    
  3.    String message;  
  4.    MyException(int m)  
  5.    {  
  6.         message="数字不能大于1000";  
  7.    }        
  8.    public String toString()  
  9.    {  
  10.         return message;  
  11.    }  
  12. }  
  13. class Student  
  14. {  
  15.    public void speak(int m) throws MyException  
  16.    {  
  17.        if(m>1000)  
  18.          {  
  19.              MyException exception=new MyException(m);  
  20.              throw exception;  
  21.          }  
  22.        System.out.println("I can speak "+m+" words in 3 minutes.");  
  23.    }  
  24. }  
  25. public class Test  
  26. {  
  27.    public static void main(String args[])  
  28.    {     
  29.        Student a=new Student();  
  30.        try  
  31.            {  
  32.                a.speak(600);  
  33.                a.speak(1200);  
  34.            }  
  35.        catch(MyException e)  
  36.        {  
  37.            System.out.println(e.toString());  
  38.        }  
  39.    }  
  40. }  

你可能感兴趣的:(编写一个异常类MyException,再编写一个类Student,该类有一个产生异常的方法oid speak()