首发于 Java开发

java中的LocalDateTime

在项目开发中经常会设计到时间的处理,java8新特性提供了3个处理时间的类型:LocalDate表示日期,LocalTime表示时间,LocalDateTime表示日期和时间。

1.原有Date类型存在问题

1.1 为什么不使用已有的类型Date来处理时间呢?

因为Date如果不格式化,打印出的时间可读性较差。

Sat Jul 04 16:56:38 CST 2020

需要使用SimpleDateFormat进行格式化,但是SimpleDateFormat是线程不安全的,SimpleDateFormat最终会调用代码:

private StringBuffer format(Date date, StringBuffer toAppendTo, FieldDelegate delegate) {
        // Convert input date to time field list
        calendar.setTime(date);
        boolean useDateFormatSymbols = useDateFormatSymbols();
        for (int i = 0; i < compiledPattern.length; ) {
            int tag = compiledPattern[i] >>> 8;
            int count = compiledPattern[i++] & 0xff;
            if (count == 255) {
                count = compiledPattern[i++] << 16;
                count |= compiledPattern[i++];
            switch (tag) {
                case TAG_QUOTE_ASCII_CHAR:
                    toAppendTo.append((char) count);
                    break;
                case TAG_QUOTE_CHARS:
                    toAppendTo.append(compiledPattern, i, count);
                    i += count;
                    break;
                default: