How do you deal with NUL? - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T18:36:15Zhttp://stackoverflow.com/feeds/question/220423http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/220423/how-do-you-deal-with-nul4How do you deal with NUL?EvilTeach2008-10-21T00:41:48Z2009-07-23T09:00:36Z
<p>From time to time, I run into communications issue with other programmers, when we talk about NULL. Now NULL could be
<BR>
<BR> a NULL pointer
<BR> the NUL character
<BR> an empty data element in some sort of database.</p>
<p><BR> NUL seems to be the most confusing. It is the ASCII character 0x00.
<BR> I tend to use '\0' in my code to represent it. Some developers in my group
<BR> tend to prefer to simply use 0, and let the compiler implicitly cast it to a char.</p>
<p><BR> What do you prefer to use for NUL? and why?</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220426#2204261Answer by JosephStyons for How do you deal with NUL?JosephStyons2008-10-21T00:43:34Z2008-10-21T00:43:34Z<p>NULL for databases, NIL for code.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220427#2204275Answer by Matt J for How do you deal with NUL?Matt J2008-10-21T00:43:42Z2008-10-21T00:43:42Z<p>I like the pre-defined <em>NULL</em> macro, as it preserves the semantic meaning, rather than some other use of the number 0.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220431#2204313Answer by Justice for How do you deal with NUL?Justice2008-10-21T00:46:00Z2008-10-21T00:46:00Z<p>There are many English words which are spelled or spoken alike, yet which have different meanings. Like in English, use the context in which the discussion is taking place to guide you toward the intended meaning.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220434#22043410Answer by Robert Gamble for How do you deal with NUL?Robert Gamble2008-10-21T00:47:12Z2008-10-21T00:47:12Z<p>I use <code>'\0'</code> for the nul-character and <code>NULL</code> for pointers because it is clearest in both cases. </p>
<p>BTW, both <code>0</code> and <code>'\0'</code> are <code>int</code>s in C and either one will be converted to <code>char</code> when stored in a <code>char</code> variable.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220446#2204462Answer by aib for How do you deal with NUL?aib2008-10-21T00:54:47Z2008-10-21T00:54:47Z<p>@BKB:</p>
<p>I see the point in his advice, but "NULL" makes it clearer that the context is pointers. It's like using "0.0" for floating-point values, as '\0' when dealing with characters. (Likewise, I prefer seeing 0 if a char is being used in an arithmetic context.)</p>
<p>Bjarne further states in <a href="http://www.research.att.com/~bs/bs_faq2.html#null" rel="nofollow">this FAQ</a> that NULL is #defined as 0 anyway, so standard code shouldn't have a problem with it. I agree that the all-caps notation is ugly, but we'll have to wait until 0x (where nullptr will be available, as a keyword.)</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220467#2204670Answer by Andrew Grant for How do you deal with NUL?Andrew Grant2008-10-21T01:06:53Z2008-10-21T01:06:53Z<p>For communication I use NULL. If I'm working with a developer who cannot grasp the concept of NULL for different data-types then I'd be concerned.</p>
<p>For implementation it's case-specific. Numbers are 0 (post-fixed f for floating-point), pointers are NULL and character strings are 0.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220482#2204820Answer by Joshua for How do you deal with NUL?Joshua2008-10-21T01:24:31Z2008-10-21T01:24:31Z<p>Systems that don't use binary 0 for NULL are getting harder to find. They also tend to have various portability issues. Why? Because on these systems neither memset nor calloc can clear out a struct that contains pointers correctly.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220530#2205300Answer by James Curran for How do you deal with NUL?James Curran2008-10-21T02:00:40Z2008-10-21T02:00:40Z<pre><code>const char END_OF_STRING = '\0';
</code></pre>
<p>So when you say:</p>
<pre><code>str[i] = END_OF_STRING;
</code></pre>
<p>or</p>
<pre><code>if (*ptr == END_OF_STRING)
</code></pre>
<p>there is absolutely no question what you mean.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/220607#2206073Answer by Tom Barta for How do you deal with NUL?Tom Barta2008-10-21T02:51:16Z2008-10-21T02:51:16Z<ul>
<li>For dealing with strings, I alwayse represent the null character as '\0'.
<li>For pointers, I try to use implicit-conversion-to-boolean (if (!myPtr) or if (myPtr)) for pointer nullity.
<li>If I need a default value for a pointer, it's NULL, e.g. struct list_head = { 0.0, NULL };).
</ul>
<p>
END_OF_STRING is silly, since it's extra indirection that simply confuses new readers (anyone who doesn't immediately recognize '\0' should step away from the keyboard).
</p>
<p>
One other thing—I think the difference between a null value and an empty value is extremely important when talking about data modeling. This is especially true when discussing C-style strings or nullable database fields. There's a huge difference between someone telling you "I have no name" and "My name is ."
</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/221408#2214080Answer by onebyone for How do you deal with NUL?onebyone2008-10-21T10:34:41Z2008-10-21T15:49:09Z<p>I quite like</p>
<pre><code>#define ASCII_NUL ('\0')
</code></pre>
<p>I only very occasionally mistype '\0' as '0'. But when I have done it, I've found the error very hard to spot by code inspection, with hilarious consequences. So I don't like '\0' much, and prefer ASCII_NUL or 0 (of course the latter has the wrong type in C++). Obviously I use '\0' where demanded by consistency with existing code, or style guides.</p>
<p>The Google C++ style guide, which contains a few things I like and a few I don't, but seems mostly sound, prefers NULL to 0 for pointers. It points out that NULL might not be defined simply as 0 (or 0L), especially in implementations where sizeof(void*) might not be sizeof(int) (or sizeof(long int)).</p>
<p>0 and NULL are both specified to be of integral type, and when converted to a pointer type they both must yield a null pointer value. But they aren't necessarily of the same integral type. So you might conceivably get some useful warnings or errors in some situations by using NULL.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/221437#2214370Answer by Graeme Perrow for How do you deal with NUL?Graeme Perrow2008-10-21T10:47:56Z2008-10-21T10:47:56Z<p>We use NULL for pointers and NULLCHAR for characters, using</p>
<pre><code>#define NULLCHAR '\0'
</code></pre>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/221458#2214581Answer by Gorpik for How do you deal with NUL?Gorpik2008-10-21T10:59:30Z2008-10-21T10:59:30Z<p>While, on the whole, I would advice using named constants, this is one exception. To me, defining:</p>
<pre><code>#define NULL 0
#define END_OF_STRING '\0'
</code></pre>
<p>makes as much sense as defining:</p>
<pre><code>#define SEVEN 7
</code></pre>
<p>which is none. And yes, I am aware that NULL is already defined by the compiler, but I never use it. For pointers, 0; for chars, '\0'. Longer does not always mean more expressive.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/224795#2247953Answer by orj for How do you deal with NUL?orj2008-10-22T08:02:01Z2008-10-22T08:10:13Z<p>If I remember correctly most C compilers define NULL like this:</p>
<pre><code>#define NULL ((void*)0)
</code></pre>
<p>This is to ensure that NULL is interpreted as being a pointer type (in C). However this can cause issues in the much more type strict world of C++. Eg:</p>
<pre><code>// Example taken from wikibooks.org
std::string * str = NULL; // Can't automatically cast void * to std::string *
void (C::*pmf) () = &C::func;
if (pmf == NULL) {} // Can't automatically cast from void * to pointer to member function.
</code></pre>
<p>Therefore in the current C++ standard null pointers should be initialized with the literal 0. Obviously because people are so used to using the NULL define I think a lot of C++ compilers either silently ignore the issue or redefine NULL to be 0 in C++ code. Eg:</p>
<pre><code>#ifdef __cplusplus
#define NULL (0)
#else
#define NULL ((void*)0)
#endif
</code></pre>
<p>The C++x0 standard now defines a <code>nullptr</code> keyword to represent null pointers. Visual C++ 2005's CLI/C++ compiler also uses this keyword when setting managed pointers to null. In current compilers you can create a template to emulate this new keyword.</p>
<p>There is a much more detailed article on <a href="http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/nullptr" rel="nofollow">wikibooks.org</a> discussing this issue.</p>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/413256#4132561Answer by EvilTeach for How do you deal with NUL?EvilTeach2009-01-05T14:28:10Z2009-01-05T14:28:10Z<pre><code>A one-L NUL, it ends a string.
A two-L NULL points to no thing.
And I will bet a golden bull
That there is no three-L NULLL.
(The name of the original author is, alas, lost to the sands of time.)
</code></pre>
http://stackoverflow.com/questions/220423/how-do-you-deal-with-nul/1170523#11705230Answer by Martin Geisler for How do you deal with NUL?Martin Geisler2009-07-23T09:00:36Z2009-07-23T09:00:36Z<p>Sort of related: Slashdot recently had a story on the <a href="http://c-faq.com/null/" rel="nofollow"><code>comp.lang.c</code> FAQ section on null pointers</a>, which I found quite interesting.</p>