java的知识点

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("唱歌");
    }
	private void log(){
        System.out.println("接口中的私有方法是为默认方法服务的");
    }
    private static void singName(){
        System.out.println("接口中的私有静态方法是为静态方法服务的");
    }
}

3、时间常用类

  • LocalDateTime
  • DateTimeFormatter
  • ChronoUnit
posted @ 2023-02-13 19:51  his365  阅读(8)  评论(0编辑  收藏  举报