常用类(常用类有哪些)

  本篇文章为你整理了常用类(常用类有哪些)的详细内容,包含有类风湿常用药有哪些 常用类有哪些 常用类java 常用类固醇类消炎药 常用类,希望能帮助你了解 常用类。

   LocalTime localTime = LocalTime.now();

   LocalDateTime localDateTime = LocalDateTime.now();

   System.out.println(localDate);

   System.out.println(localTime);

   System.out.println(localDateTime);

   //of():设置指定的年、月、日、时、分、秒没有偏移量

   System.out.println("===================");

   LocalDateTime localDateTime1 = LocalDateTime.of(2020, 10, 23, 6, 23, 43);

   System.out.println(localDateTime1);

   //getXxx()

   System.out.println("===================");

   System.out.println(localDateTime.getDayOfMonth());//获取当前这一天是这一月的第几天

   System.out.println(localDateTime.getDayOfWeek());//获取当前这一天是这一周的星期几

   System.out.println(localDateTime.getMonth());//获取当前月的英文值

   System.out.println(localDateTime.getMonthValue());//获取当前月的数值

   System.out.println(localDateTime.getMinute());//获取当时时间的分钟数

   System.out.println("===================");

   //体现不可变性:修改日期的值不会对日期本身造成影响

   //withXxx():设置相关的属性

   LocalDateTime localDateTime2 = localDateTime.withDayOfMonth(22);

   System.out.println(localDateTime2);//修改当前日期数之后的日期

   System.out.println(localDateTime);//修改之前的日期

   System.out.println("===================");

   LocalDateTime localDateTime3 = localDateTime.withHour(14);

   System.out.println(localDateTime3);//修改当前的小时之后的值

   System.out.println(localDateTime);//修改之前的值

   System.out.println("===================");

   LocalDateTime localDateTime4 = localDateTime.plusMonths(3);

   System.out.println(localDateTime4);//输出在当前月的基础上加上三个月之后的值

   System.out.println(localDateTime);

   LocalDateTime localDateTime5 = localDateTime.minusDays(6);

   System.out.println(localDateTime5);//输出在当前天数的基础上减去6天之后的值

   System.out.println(localDateTime);

  以上就是常用类(常用类有哪些)的详细内容,想要了解更多 常用类的内容,请持续关注盛行IT软件开发工作室。

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: