61
votes
18answers
14k views
How to avoid “!= null” statements in Java?
I work with java all day long. The most used idiom (code snippet) I'm programing in java, is to test if an object != null before I use it, to avoid a NullPointerException of course. But the code looks …
29
votes
21answers
2k views
Why is “null” present in C# and java?
We noticed that lots of bugs in our software developed in C# (or java) cause a NullReferenceException.
Is there a reason why "null" has even been included in the language?
After all, if there were …
29
votes
31answers
3k views
Return ‘null’ or throw exception
I have a method that is suppose to return an object if it is found.
If it is not found, should I:
a) return null
b) throw an exception
c) other
25
votes
27answers
2k views
Why don’t we have two nulls?
I've often wondered why languages with a null representing "no value" don't differentiate between the passive "I don't know what the value is" and the more assertive "There is no value.".
There have …
25
votes
31answers
2k views
Are nulls in a relational database okay?
There's a school of thought that null values should not be allowed in a relational database. That is, a table's attribute (column) should not allow null values. Coming from a software development …
24
votes
26answers
2k views
What is the purpose of null?
I am in a compilers class and we are tasked with creating our own language, from scratch. Currently our dilemma is whether to include a 'null' type or not. What purpose does null provide? Some of our …
24
votes
18answers
2k views
IllegalArgumentException or NullPointerException for a null parameter?
I have a simple setter method for a Java property and null is not appropriate for this particular property. I have always been torn, in this situation: should I throw an IllegalArgumentException, or …
19
votes
14answers
964 views
How many of you are aware that its safe to delete a NULL pointer?
I just realized after years of writing C++, that I can safely delete a NULL pointer. So I figure, I'm not the only one that wasn't aware of this. Now I feel silly for all my
if(p) delete p;
code …
18
votes
7answers
885 views
Why is there a `null` value in JavaScript?
In JavaScript, there are two values which basically say 'I don't exist' - undefined and null.
A property to which a programmer has not assigned anything will be undefined, but in order for a property …
15
votes
16answers
2k views
Do you use NULL or 0 (zero) for pointers in C++?
In the early days of C++ when it was bolted on top of C, you could not use NULL as it was defined as (void*)0. You could not assign NULL to any pointer other than void*, which made it kind of useless. …
14
votes
15answers
727 views
Never use Nulls?
We are currently going through the long process of writing some coding standards for C#.
I've written a method recently with the signature
string GetUserSessionID(int UserID)
GetUserSession() …
14
votes
15answers
697 views
How liberal should I be with NOT NULL columns?
I'm designing a database schema, and I'm wondering what criteria I should use for deciding whether each column should be nullable or not.
Should I only mark as NOT NULL only those columns that …
14
votes
15answers
1k views
Does it help GC to null local variables in Java
I was 'forced' to add myLocalVar = null; statement into finally clause just before leaving method. Reason is to help GC. I was told I will get SMS's during night when server crashes next time, so I …
14
votes
9answers
1k views
Get null == null in SQL
I wish to search a database table on a nullable column. Sometimes the value I'm search for is itself NULL. Since Null is equal to nothing, even NULL, saying
where MYCOLUMN=SEARCHVALUE
will fail. …
13
votes
11answers
576 views
What does/should NULL mean along with FK relationships - Database
I was experiencing a hard time creating FK relationships in my relational SQL database and after a brief discussion at work, we realized that we have nullable columns which were most likely …
