LocalDateTime is abstract class. So I cannot write:
LocalDateTime value = new LocalDateTime(); //error
If I want to get its instance, I have to write:
LocalDateTime value = LocalDateTime.now(); //not error
I have a question, Why can LocalDateTime return the instance? It's an abstract class.
I saw the overview, but I could not find it...
LocalDateTime
is not an abstract class.It has private constructors, so direct instantiation is not possible. Factory method such
now()
,now(ZoneId)
etc are used to create instances.