java 1.7 特性_Java1.7和1.8新特性

1.7新特性

switch支持string

创建泛型实例,可以通过类型推断简化代码,new后面的<>内不用再写泛型

HashMap parmas = new HashMap<>();

try-with-resource语句实现自动资源管理,在try执行完毕后自动关闭资源,关闭的资源需要实现java.lang.AutoCloseable接口

private static void customBufferStreamCopy(File source, File target) {

try (InputStream fis = new FileInputStream(source);

OutputStream fos = new FileOutputStream(target)){

byte[] buf = new byte[8192];

int i;

while ((i = fis.read(buf)) != -1) {

fos.write(buf, 0, i);

}

}

catch (Exception e) {

e.printStackTrace();

}

}

单个catch捕捉多个异常,异常之间用管道符(|)隔开

public static void testThrows() throws IOException, SQLException {

try {

testThrows();

} catch (IOException | SQLException ex) {

throw ex;

}

}

Java1.8新特性

lambda表达式,功能接口(只有一个方法的接口)

接口允许添加非抽象方法,需要添加default字段

public interface Demo {

default public int add(int a,int b){

return a+b;

}

}

允许使用::关子健传递方法或者构造函数

还有很多其他新特性,有时间再去看吧。哈哈哈

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值