2020-10-26

在这里插入图片描述
在这里插入图片描述

1.简述JavaError类与Exception类的区别
Error异常和Exception异常都继承于throwable异常类。
Error不是程序需要捕获和进行处理的,例如OutOfMemoryError(当java虚拟机在为对象分配内存空间时,剩余的空间不够,同时也没有可以释放的内容时,将会发生这样的错误)不由程序员进行捕获和处理,当Error发生时,程序将会停止。
RuntimeException异常主要包括四种异常:空指针异常,数组下标越界异常、类型转换异常、算术异常。由java虚拟机自动抛出和自动捕获。
2.简述异常处理的两中方式,并举例说明区别
声明抛出处理:
1.隐式声明抛出:异常型是RuntimeException或者是其子类,程序方法可以对异常不作任何声明抛出或处理,直接交给调用该方法的地方处理,程序能编译通过,不会对可能产生异常的代码行给出提示
2.显示声明抛出: 如果main中readline()方法处发生异常,main不负责异常处理,由调用main方法的地方去处理异常,而调用main方法的是java虚拟机,因此由java虚拟机进行默认处理
捕获处理:
try – 用于监听。将要被监听的代码(可能抛出异常的代码)放在try语句块之内,当try语句块内发生异常时,异常就被抛出。
catch – 用于捕获异常。catch用来捕获try语句块中发生的异常。
finally – finally语句块总是会被执行。它主要用于回收在try块里打开的物力资源(如数据库连接、网络连接和磁盘文件)。只有finally块,执行完成之后,才会回来执行try或者catch块中的return或者throw语句,如果finally中使用了return或者throw等终止方法的语句,则就不会跳回执行,直接停止。

public class ioEXception {
    public static void main(String args[]) {
        try {
            int a[] = new int[2];
            System.out.println("Access element three :" + a[3]);
        } catch (ArrayIndexOutOfBoundsException e) {
            System.out.println("Exception thrown  :" + e);
        }
        System.out.println("Out of the block");
    }
}

3.选取RuntimeException类的五个子类,编写抛出并捕获上述子类异常的程序(例如算术异常,空指针异常,类转换异常,数组越界异常等)
算术异常

public class arithmeticException {
    public static void main(String args[]){
        int a, b, c;
        a = 4;
        b = 0;
        c = 3;
        System.out.println(a / b + c);
    }
}

空指针异常

public class nullException {
    private static int[] a;
    public static void main(String args[]){
        System.out.println(a[0]);
    }
}

类转换异常

public class classCastException {
    static class One {
        public void foo() {
            System.out.println("One");
        }
    }
    static class Two extends One {
        public void foo() {
            System.out.println("Two");
        }
        public void dosth(){
            System.out.println("Two again");
        }
    }
    public static void main(String[] args) throws Exception{
        One t = new Two(); //向上转型
        t.foo();
        t.dosth();//编译错误
        t = (Two)t;
        t.dosth();//编译错误
        ((Two) t).dosth();//编译成功
    }
}

数组越界异常

public class listException {
    public static void main(String args[]){
        String foo  = args[1];
        System.out.println("foo = " + foo);
    }
}

空栈异常

import java.util.Stack;

public class stackException {
    public static void main(String args[]){
        Stack stack = new Stack();
        Object ob = stack.pop();
    }
}

4.仿照例7.9自定义一个异常类,并在某场景下抛出该异常对象。

public class SelfFundsException extends Exception
{  SelfFundsException(String msg){
super(msg);
}
static void throwNull(a) throws SelfFundsException{
    {
        if(a==null)
        {throw new SelfFundsException("a is null");}
    }
    public static void main (String args[]){
    string a;
    try
       { throwNull(a);}
      catch  (SelfFundsException e)
       {e.printStackTrance();}
    }
}```

在C++中,你可以通过`<ctime>`库来实现这个功能。首先,你需要包含头文件并创建一个函数来处理日期转换。这是一个简单的示例: ```cpp #include <iostream> #include <ctime> #include <stdexcept> int getDayOfWeekAndDayOfMonth(const std::string& dateStr) { struct tm time_struct; std::istringstream ss(dateStr); ss >> std::get_time(&time_struct, "%Y-%m-%d"); // 检查日期是否有效 if (ss.fail() || !std::mktime(&time_struct)) { throw std::invalid_argument("Invalid date format. Please use YYYY-MM-DD."); } // 获取当前时间的结构体,并减去给定日期,计算差值天数 auto now = std::chrono::system_clock::now(); auto now_tm = std::localtime(std::chrono::system_clock::to_time_t(now)); int days_since_epoch = static_cast<int>(std::chrono::duration_cast<std::chrono::days>(now - now_tm).count()); int day_of_year = time_struct.tm_yday; // 日历年中的第几天 int week_day = time_struct.tm_wday + 1; // 一周中的第一天是Sunday,所以加1 return {day_of_year, week_day}; } int main() { try { std::string date_str = "2020-10-26"; auto [day_of_year, week_day] = getDayOfWeekAndDayOfMonth(date_str); std::cout << "This date is the " << day_of_year << "th day of the year and it's on the " << week_day << "th week.\n"; } catch (const std::invalid_argument& e) { std::cerr << e.what() << '\n'; } return 0; } ``` 在这个例子中,我们首先尝试从给定的字符串解析日期,如果失败就抛出`std::invalid_argument`异常。然后,我们计算输入日期是一年中的第几天以及是一周中的哪一天。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值