日期:2014-05-20 浏览次数:21003 次
public class MyException extends Exception { //继承Exception类
private String content;
public MyException(String content){ //构造方法
this.content=content;
}
public String getContent() { //获取描述信息
return this.content;
}
}
public class Example {
public static void check(String str) throws MyException{ //指明要抛出的异常
char[] Array = str.toCharArray();//将字符串转换为字符数组
//检查字符数组中的每个元素
//如果当前元素是英文字母以外的字符,则抛出MyException异常类对象
for(int i = 0;i < Array.length;i++){ //检查字符数组中的每个元素
if((Array[i] <= 64 && Array[i] >= 0) || (Array[i] >= 91 && Array[i] <= 96) || ( Array[i] >= 123))
throw new MyException("字符串" + str +"中含有非法字符!");//如果当前元素是英文字母以外的字符,则抛出MyException异常类对象
}
}
public static void main(String[] args) {
String str1="HellWorld";
String str2="Hell!MR!";
try{
check(str1); //调用check()方法
check(str2); //执行该行代码时,抛出异常
}catch(MyException e){ //捕获MyException异常
e.printStackTrace(); //输出异常描述信息
}
}
}
public MyException(){
super();
}
public MyException(String msg){
super(msg);
}
System.out.println(e);