Tony Hoare si dice che abbia inventato, ciò che ora chiamiamo null
. E se ne pentì:
I call it my billion-dollar mistake. It was the invention of the null reference in 1965. At that time, I was designing the first comprehensive type system for references in an object oriented language (ALGOL W). My goal was to ensure that all use of references should be absolutely safe, with checking performed automatically by the compiler. But I couldn't resist the temptation to put in a null reference, simply because it was so easy to implement. This has led to innumerable errors, vulnerabilities, and system crashes, which have probably caused a billion dollars of pain and damage in the last forty years
Fonte: wikipedia .
Ora dobbiamo vivere e affrontarlo.
however I don't know how to handle unknown dates.
Fidati, non sei solo.
Il problema è che c'è qualcosa che chiamerei ambiguità delle informazioni . Chiedere » quando è stata la battaglia di waterloo? « nella vita di tutti i giorni » I do not know « è una risposta accettata. Ma non è la risposta su la data stessa , riguarda la conoscenza dell'altoparlante .
Per il tuo problema: chiedere person.getBirthDate()
ti dà una risposta ambigua :
Qual è una soluzione adeguata a quella miseria di ambiguità ?
Dato che abbiamo null
e poiché è ampiamente accettato in datastore , dovresti usare null
come risposta corretta nel contesto del DB.
Ma per quanto riguarda il tuo programma:
Come hai detto correttamente
because it's resulting in null pointer exceptions when I try to compare dateOfBirth to other dates such as the LocalDate.now()
Devi custodire contro questo in un modo o nell'altro:
1) Potresti introdurre un getter person.birthdayKnown()
per fare quanto segue:
if (personA.birthdayKnown() && personA.birthdayKnown()) // allow further operations
2) Con l'avvento di Java8, potresti renderlo un Facoltativo e funziona con isPresent()
.