JAVA基础学习笔记_异常

文章目录

异常

应该知道出了异常怎么处理

  • java.lang.Throwable
    • Error(错误,硬件出错或内存不足,不是程序员能解决的)
    • Exception(异常)
      • RuntimeException(运行时异常),代码出错导致程序出现的问题
      • 其他异常(编译时异常),提醒程序员检查本地信息
        java--(编译)-->字节码文件(class)---(运行)-->运行结果

异常的作用

  • 异常是查询bug的关键信息
  • 异常可以作为方法内部的一种特殊返回值,以便通知调用着底层的执行情况

处理异常的方式

  • 默认处理,将异常异常信息打印在控制台

  • 捕获异常(自己处理),好处就是可以让程序继续执行不停止为了不让程序停止

  • 抛出异常,在方法中出现异常,就没有继续运行的意义了,抛出处理告诉调用者出错了

    public static void main(String[] args) {
    int[] arr = {1,2,3,4,5};
    try {
    System.out.println(arr[10]);
    }
    catch (ArrayIndexOutOfBoundsException e) {
    System.out.println(e);
    }
    }

异常中的常见方法

  • e.getMessage()

  • e.toString()

  • e.printStackTrace()

    public static void main(String[] args) {
    int[] arr = {1,2,3,4,5};
    try {
    System.out.println(arr[10]);
    }
    catch (ArrayIndexOutOfBoundsException e) {
    String message = e.getMessage();//Index 10 out of bounds for length 5
    System.out.println(message);
    String string = e.toString();//java.lang.ArrayIndexOutOfBoundsException: Index 10 out of bounds for length 5
    System.out.println(string);
    e.printStackTrace();
    //输出信息最为详尽
    //java.lang.ArrayIndexOutOfBoundsException: Index 10 out of bounds for length 5at com.itheima.exception.exception.main(exception.java:7)
    }
    }

捕获异常

你比如说,这个信息是用户来输入的,如果不抛出异常捕获异常,不能用户输入错一次,我们整个java程序就停了吧,那还搞什么网页

public static void main(String[] args) {
	//创建键盘录入对象
	Scanner sc = new Scanner(System.in);
	//创建女朋友对象
	GirlFriend girlFriend = new GirlFriend();
	while (true) {
		try {
			//接受女友姓名
			String name = sc.nextLine();
			//设置女友姓名
			girlFriend.setName(name);
			//接受女友年龄
			int age = sc.nextInt();
			//设置女友年龄
			girlFriend.setAge(age);
			break;
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	System.out.println(girlFriend);
}

public class GirlFriend {
    String name;
    int age;

    public GirlFriend() {
    }

    public GirlFriend(String name, int age) {
        this.name = name;
        this.age = age;
    }

    /**
     * 获取
     * @return name
     */
    public String getName() {
        return name;
    }

    /**
     * 设置
     * @param name
     */
    public void setName(String name) {
        if(name.length()>10||name.length()<3){
            throw new RuntimeException();
        }
        this.name = name;
    }

    /**
     * 获取
     * @return age
     */
    public int getAge() {
        return age;
    }

    /**
     * 设置
     * @param age
     */
    public void setAge(int age) {
        if(age<18){
            throw new RuntimeException();
        }
        this.age = age;
    }

    public String toString() {
        return "GirlFriend{name = " + name + ", age = " + age + "}";
    }
}

自定义异常

自定义的异常类继承RuntimeException就可以了

注意要重写空参构造和带参构造,不仅是这里注意,所有的类继承父类都不能忘写构造方法

相关推荐
奶香臭豆腐12 分钟前
C++ —— 模板类具体化
开发语言·c++·学习
hanbarger22 分钟前
mybatis框架——缓存,分页
java·spring·mybatis
cdut_suye29 分钟前
Linux工具使用指南:从apt管理、gcc编译到makefile构建与gdb调试
java·linux·运维·服务器·c++·人工智能·python
苹果醋341 分钟前
2020重新出发,MySql基础,MySql表数据操作
java·运维·spring boot·mysql·nginx
小蜗牛慢慢爬行43 分钟前
如何在 Spring Boot 微服务中设置和管理多个数据库
java·数据库·spring boot·后端·微服务·架构·hibernate
azhou的代码园1 小时前
基于JAVA+SpringBoot+Vue的制造装备物联及生产管理ERP系统
java·spring boot·制造
波音彬要多做1 小时前
41 stack类与queue类
开发语言·数据结构·c++·学习·算法
wm10431 小时前
java web springboot
java·spring boot·后端
smile-yan1 小时前
Provides transitive vulnerable dependency maven 提示依赖存在漏洞问题的解决方法
java·maven
老马啸西风1 小时前
NLP 中文拼写检测纠正论文-01-介绍了SIGHAN 2015 包括任务描述,数据准备, 绩效指标和评估结果
java