Tagged Questions

Null means *nothing* or *unknown* (depending on context)

learn more… | top users | synonyms

359
votes
31answers
149k views

How to avoid “!= null” statements in Java?

I work with java all day long. The most used idiom (code snippet) I'm programming in java, is to test if an object != null before I use it, to avoid a NullPointerException of course. But the code ...
110
votes
10answers
91k views

Null object in javascript

Why is null considered an object in javascript? Is checking if ( object == null ) do something the same as if ( !object ) do something And also What is the difference between ...
109
votes
10answers
29k views

Best explanation for Languages without Null

Every so often when programmers are bitching about null errors/exceptions someone asks what we do without null. I myself have some basic idea of the coolness of option types but I don't have the ...
90
votes
8answers
4k views

How is null + true a string?

Since true is not a string type, how is null + true a string ? string s = true; //Cannot implicitly convert type 'bool' to 'string' bool b = null + true; //Cannot implicitly convert type 'string' ...
76
votes
34answers
9k views

Should a retrieval method return 'null' or throw an exception when it can't produce the return value?

I have a method that is suppose to return an object if it is found. If it is not found, should I: return null throw an exception other
64
votes
8answers
2k views

Standard use of 'Z' instead of NULL to represent missing data?

Outside of the argument of whether or not NULLs should ever be used: I am responsible for an existing database that uses NULL to mean "missing or never entered" data. It is different from empty ...
64
votes
9answers
2k views

Redefining NULL

I'm writing C code for a system where address 0x0000 is valid and contains port I/O. Therefore, any possible bugs that access a NULL pointer will remain undetected and at the same time cause dangerous ...
62
votes
20answers
10k 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 ...
49
votes
5answers
37k views

Altering a column: null to not null

I have a table that has several nullable integer columns. This is undesirable for several reasons, so I am looking to update all nulls to 0 and then set these columns to "NOT NULL." Aside from ...
49
votes
3answers
22k views

NULL vs nil in Objective-C

In observeValueForKeyPath:ofObject:change:context: - why do the docs use NULL instead of nil when not specifying a context pointer?
49
votes
10answers
72k views

How to check null objects in jQuery

I am using jQuery, and I want to check the existence of an element in my page. I have written following code, but it's not working: if ($("#btext" + i) != null){ //alert($("#btext" + ...
49
votes
24answers
3k 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 ...
47
votes
7answers
15k views

Why does Oracle 9i treat an empty string as NULL?

I know that it does consider ' ' as NULL, but that doesn't do much to tell me why this is the case. As I understand the SQL specifications, ' ' is not the same as NULL -- one is a valid datum, and ...
41
votes
4answers
1k views

Is NULL in C required/defined to be zero?

NULL appears to be zero in my GCC test programs, but wikipedia says that NULL is only required to point to unaddressable memory. Do any compilers make NULL non-zero? I'm curious whether if (ptr == ...
40
votes
15answers
2k views

Is null an Object?

Is null an Object in Java?
39
votes
9answers
23k views

DateTime “null” value

I've been searching a lot but couldn't find a solution. How do you deal with a DateTime that should be able to contain an uninitialized value (equivalent to null)? I have a class which might have a ...
38
votes
33answers
3k 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 ...
36
votes
19answers
12k 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. ...
34
votes
8answers
5k views

Which @NotNull Java annotation should I use?

I'm looking to make my code more readable as well as use tooling like IDE code inspection and/or static code analysis (FindBugs and Sonar) to avoid NullPointerExceptions. Many of the tools seem ...
32
votes
25answers
3k 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 ...
30
votes
11answers
1k views

Deep Null checking, is there a better way?

We've all been there, we have some deep property like cake.frosting.berries.loader that we need to check if it's null so there's no exception. The way to do is is to use a short-circuiting if ...
30
votes
8answers
3k 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 ...
30
votes
11answers
67k views

SQL NOT IN constraint and NULL values

This issue came up when I got different records counts for what I thought were identical queries one using a not in where constraint and the other a left join. The table in the not in constraint had ...
27
votes
6answers
25k views

How to tell if a string is not defined in a bash shell script?

If I want to check for the null string I would do [ -z $mystr ] but what if I want to check whether the variable has been defined at all? Or is there no distinction in bash scripting?
26
votes
15answers
2k 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 ...
26
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 ...
26
votes
5answers
14k views

C# ADO.NET: nulls and DbNull — is there more efficient syntax?

I've got a DateTime? that I'm trying to insert into a field using a DbParameter. I'm creating the parameter like so: DbParameter datePrm = updateStmt.CreateParameter(); datePrm.ParameterName = ...
25
votes
10answers
7k views

What is null in Java?

What is null? Is null an instance of anything? What set does null belong to? How is it represented in the memory?
25
votes
18answers
3k views

Is it good practice to NULL a pointer after deleting it?

I'll start out by saying, use smart pointers and you'll never have to worry about this. What are the problems with the following code? Foo * p = new Foo; // (use p) delete p; p = NULL; This was ...
25
votes
15answers
3k 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 ...
24
votes
9answers
3k views

Unique ways to use the Null Coalescing operator

I know the standard way of using the Null coalescing operator in C# is to set default values. string nobody = null; string somebody = "Bob Saget"; string anybody = ""; anybody = nobody ?? "Mr. T"; ...
22
votes
2answers
776 views

string.Empty vs null.Which one do you use?

Recently a colleague at work told me not to use string.Empty when setting a string variable but use null as it pollutes the stack? He says don't do string myString=string.Empty; but do string ...
22
votes
8answers
875 views

what does “delete from table where NULL = NULL” means?

what does delete from table where NULL = NULL means ?
22
votes
6answers
11k views

NULL pointer with boost::shared_ptr?

What's the equivalent to the following: std::vector<Foo*> vec; vec.push_back(NULL); when dealing with boost::shared_ptr? Is it the following code? std::vector< ...
21
votes
10answers
1k views

Is it a bad idea if equals(null) throws NullPointerException instead?

The contract of equals with regards to null, is as follows: For any non-null reference value x, x.equals(null) should return false. This is rather peculiar, because if o1 != null and o2 == null, ...
21
votes
3answers
6k views

When to use nil and NULL in Objective C?

This is a sample code: NSDictionary *myDictionary = [NSDictionary dictionary]; NSNumber *myNumber = [myDictionary valueForKey: @"MyNumber"]; NSLog(@"myNumber = %@", myNumber); // output myNumber = ...
20
votes
4answers
477 views

How does appending to a null string work in C#?

I was surprised to see an example of a string being initialised to null and then having something appended to it in a production environment. It just smelt wrong. I was sure it would have thrown a ...
20
votes
21answers
1k views

In either C or C++, should I check pointer parameters for NULL?

This question was inspired by this answer. I've always been of the philosophy that the callee is never responsible when the caller does something stupid, like passing of invalid parameters. I have ...
20
votes
11answers
5k views

Does assigning objects to null in Java impact garbage collection?

Does assigning an unused object to null in Java improve the garbage collection process in any measurable way? My experience with Java (and C#) has taught me that is often counter intuitive to try and ...
20
votes
2answers
4k views

Why null cast?

I saw this piece of code somewhere and wondered: when and why would somebody do the following: doSomething( (MyClass) null ); Have you ever done this? Could you please share your experience?
19
votes
11answers
1k views

NULL check before deleting an object?

This came up as one of the code review comments. Is it a good idea to check for NULL before calling delete for any object? I do understand delete operator checks for NULL internally and is ...
19
votes
7answers
611 views

Why does C# require you to write a null check every time you fire an event?

This seems odd to me -- VB.NET handles the null check implicitly via its RaiseEvent keyword. It seems to raise the amount of boilerplate around events considerably and I don't see what benefit it ...
19
votes
3answers
11k views

error: ‘NULL’ was not declared in this scope

I get this message when compiling C++ on gcc 4.3 error: ‘NULL’ was not declared in this scope It appears and disappears and I don't know why. Why? Thanks.
18
votes
13answers
687 views

Alternatives to returning NULL

/** * Returns the foo with the matching id in this list * * @param id the id of the foo to return * @return the foo with the matching id in this list */ public Foo ...
18
votes
3answers
905 views

iphone+Difference between nil,NIL and null

I am newbie to iphone programming, I'm just in the learning stage. I want to know the difference between nil, NIL and null. I've googled around and found this: nil -> Null-pointer to objective- c ...
18
votes
2answers
944 views

What's the difference between undefined in Haskell and null in Java?

Both are terms whose type is the intersection of all types (uninhabited). Both can be passed around in code without failing until one attempts to evaluate them. The only difference I can see is that ...
18
votes
4answers
6k views

json_encode is returning NULL?

For some reason the item "description" returns NULL with the following code: <?php include('db.php'); $result = mysql_query('SELECT * FROM `staff` ORDER BY `id` DESC LIMIT 2') or ...
18
votes
20answers
2k views

Is returning null bad design?

I've heard some voices saying that checking for a returned null value from methods is bad design. I would like to hear some reasons for this. pseudocode: variable x = object.method() if (x is null) ...
18
votes
2answers
6k views

Session null in ASP.Net MVC Controller Constructors

Why is Session null in the constructors of Controllers? It can be accessed from Action methods. Presumably, because the MVC Routing framework is responsible for newing-up a Controller, it just hasn't ...
18
votes
7answers
5k views

What is the correct way to represent null XML elements?

I have seen null elements represented in several ways: The element is present with xsi:nil="true": <book> <title>Beowulf</title> <author xsi:nil="true"/> ...

1 2 3 4 5 44