Is there an actual need for NULL or not? In most of the OO languages i have programmed in there has always been a way to set a variable to a NULL value which lead to all sorts of funny problems.
What are your thoughts?
|
|
Is there an actual need for NULL or not? In most of the OO languages i have programmed in there has always been a way to set a variable to a NULL value which lead to all sorts of funny problems. What are your thoughts? |
||||||||||||||
|
closed as exact duplicate by Daniel A. White, Michael Haren, 17 of 26, blowdart, Chuck May 8 at 23:33 |
|
|
my answer to that question is |
|||
|
|
|
|
There are normally two special values. Some languages handle both, some only 1 and throw an error with the other, and some merge the two. Those two values are
If you did not have Again, its the idea of having a guaranteed allowable value that you can use. It is always available to you and its always disjoint from the set of "real values" that would normally return from an operation you're performing. Like I hinted before, there are also optimizations that can be done here as well because |
|||
|
|
|
|
In languages with garbage collection where variables are actual storage locations (as opposed to Python's labels), the Also, even many algorithms written in pseudo code make use of the special |
|||
|
|
|
|
NULL is a little like God. If it didn't exist, we would wind up having to create one. Something has to represent the value of a reference that is unassigned (whether that be because it was never assigned or it was cleared at some point). The only alternative is to use an object that, effectively, substitutes for NULL. The problem with that is that if you did all that to avoid the NullPointerException, now you're going to simply replace it with UnexpectedObject exception or ClassCastException or what not. |
||||||
|
|
|
It's possible to design a language that doesn't have a NULL but instead uninitialised values point to a singleton dummy object that doesn't actually do anything. You could compare pointers against the reference of this dummy object, and calls to methods on the object would result in no action or a runtime error. This technique is hard to implement for statically typed languages like C++ or Java. |
|||
|