java 知识点
1、包装类自带有parse方法
Integer i = 315;
int i1 = Integer.parseInt("315");
System.out.println(i==i1);
Long l1 = 4567L;
long l2 = Long.parseLong("4567");
System.out.println(l1==l2);
2、接口中可以有方法体
- 用default修饰
- 或者定义静态方法
public interface IPerson {
abstract void show();
default void eat(){
System.out.println("吃饭");
}
static void sing(){
System.out.println("唱歌");
}
}
3、时间常用类
- LocalDateTime
- DateTimeFormatter
- ChronoUnit