说明
1、LocalTime表示没有指定时间区域的时间类。
2、LocalTime提供多种静态工厂方法,目的是简化时间对象例子的创建和操作,包括分析时间字符串的操作等。
实例
LocalTimelate=LocalTime.of(23,59,59); System.out.println(late);//23:59:59 DateTimeFormattergermanFormatter= DateTimeFormatter .ofLocalizedTime(FormatStyle.SHORT) .withLocale(Locale.GERMAN); LocalTimeleetTime=LocalTime.parse("13:37",germanFormatter); System.out.println(leetTime);//13:37
以上就是java LocalTime的使用,希望对大家有所帮助。更多Java学习指路:Java基础
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容