Java 基本类学习笔记

1. 异常

定义:异常就是程序执行时破环正常流程指令

异常有三种:
a. 检查时异常(checked exception)
b. error
c. 运行时异常(runtime exception or unchecked exceptions)

JavaSE 7以后,一个异常使用“|”能处理块能处理多个异常,eg:

catch (IOException|SQLException ex) { 
    logger.log(ex); 
    throw ex; 
} 

    //当一个异常块处理多个异常时,参数ex是隐式的final类型。

Java不需要catch或定义unchecked exceptions

try{}catch(){}语句,如果有finally{}块的话,可以需要catch块

异常处理建议:If a client can reasonably be expected to recover from an exception, make it a checked exception. If a client cannot do anything to recover from the exception, make it an unchecked exception

2. 基本I/O


3. 并发



[b]4. 环境平台


[/b]

5. 常用语句

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值