-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create null-billion-dollar-mistake.md
- Loading branch information
1 parent
f726b24
commit 5b72fbe
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Null is a billion-dollar mistake | ||
|
||
In 2009, Tony Hoare describes his invention as a "billion-dollar mistake": | ||
|
||
> 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. | ||
## Reading | ||
|
||
- https://www.infoq.com/presentations/Null-References-The-Billion-Dollar-Mistake-Tony-Hoare/ | ||
- https://en.wikipedia.org/wiki/Null_pointer | ||
- https://en.wikipedia.org/wiki/Tony_Hoare | ||
- https://maximilianocontieri.com/null-the-billion-dollar-mistake |