定义一个邮件地址异常类,当用户输入的邮件地址不合法时,抛出异常。
(其中邮件地址的合法格式为**** @****,也就是说必须是在@符号左右出现一个或多个其他字符的字符串)
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
System.out.println("输入邮箱试试:");
Scanner sc = new Scanner(System.in);
String email = sc.nextLine();
sc.close();
if(!email.matches(".+@.+")){
try {
throw new EmailException("邮箱格式不合法");
} catch (EmailException e) {
e.printStackTrace();
}
}
}
}
class EmailException extends Exception {
public EmailException(String info) {
System.out.println(info);
}
}
看了这么多麻烦点个赞
关注一下就更好了