• 2022-06-08
    (X-5-7)在Java异常处理中经常存在与下述代码片段类似的代码try{//语句}catch(ArithmeticException e1){System.out.println("算术有错误!");}catch(ClassNotFoundExceptione2){System.out.println("没有找到类!");}catch(SQLExceptione3){System.out.println("数据库操作错误!");}分析上述代码,在Java异常处理机制中蕴含了( )设计模式。
    A: 命令( Command)
    B: 观察者( Observer)
    C: 迭代器( Iterator)
    D: 职责链( Chain of Responsibility)