So I immediately checked my favorite language gotcha, the macro NULL. The text is entirely wrong. The macro NULL is harmful in both C and C++. It is not "stylistic" AT ALL.
Here's the problem with the macro: the macro NULL can be either 0 or can be (void * ) 0. The issue is that the former can be accidentally interpreted as an integer depending on context.
In both C and C++, this manifests when you pass NULL to a varargs function. Instead of passing in a null pointer, the compiler may instead pass in an integer zero. If pointers and ints have different sizes, hilarity ensues. If the null pointer does not have the same bit representation as int zero, hilarity ensues.
In C++, this happens even more commonly. If there is an operator overload and you pass in NULL, then if NULL is 0 it will chose the int overload, if NULL is (void * ) 0 it will chose a pointer overload.
> ... when you pass NULL to a varargs function. Instead of passing in a null pointer, the compiler may instead pass in an integer zero.
How can that happen? If I recall the standard, variadic functions have default promotion of non-declared args: integral promotion for integral types, floats to doubles. Why would the compiler want to convert a pointer (which (void*)0 is) to an integer?
Literal zero in a pointer context is interpreted by the compiler to mean "the null pointer." The compiler then compiles the null pointer into the code.
First, that's inherently non-portable. That aside...
On most systems, the null pointer happens to be a pointer to address zero. For other systems, e.g. 8086 16-bit mode, you can create a intptr_t (which is the same size as a pointer) and set it to zero. Then cast it to a pointer. Such casting is always done bitwise, so it will work.
The compiler knows to turn the following into the null pointer
void *p = (void *) 0;
but the compiler will NOT turn the following into a null pointer
void *p = (void *) (uintptr_t) 0;
because the literal 0 is now in an integer context, not a pointer context.
It's becoming increasingly hard to gather any useful information about software development topic from a concise title because rampant terminology growth and (sometimes fueled by reuse of concepts with different terminology in different projects) to the point that concise titles are almost always ambiguous in some manner.
For example, I've seen this submission for hours now, and every time I assumed it was sort of function annotation/decorator syntax addition to achieve some interesting result, which didn't pique my interest at those times.
Is any other field quite as bad with this as software development seems to be?
This seems to be a particularly extreme case of unconventional terminology usage, but on the whole, the phenomenon you describe is the inevitable consequence of trying to be concise while also not inventing words. The information density of the existing language just can’t handle the depth of all the fields we try to use it for without inventing terminology.
Off the top of my head, I would claim that any large subfield of mathematics is probably as bad, if not worse, than software development (see: all the words used to describe “a collection of things”). I would expect this to be true for any sufficiently developed field of study.
The first sentence of the link may be enlightening. Instead of puzzling over it, why not just clicm the link and take a peek?
> This document is intended for knowledgeable users of C (or any other language using a C-like grammar, like Perl or Java) who would like to know more about, or make the transition to, C++
If you are in the Groningen region for a longer period, I can highly recommended taking Frank Brokken's C++ course [1]. I took the course over ten years ago and benefitted from it many years thereafter. He is also a great and very entertaining lecturer.
Here's the problem with the macro: the macro NULL can be either 0 or can be (void * ) 0. The issue is that the former can be accidentally interpreted as an integer depending on context.
In both C and C++, this manifests when you pass NULL to a varargs function. Instead of passing in a null pointer, the compiler may instead pass in an integer zero. If pointers and ints have different sizes, hilarity ensues. If the null pointer does not have the same bit representation as int zero, hilarity ensues.
In C++, this happens even more commonly. If there is an operator overload and you pass in NULL, then if NULL is 0 it will chose the int overload, if NULL is (void * ) 0 it will chose a pointer overload.
Never use NULL. Ever.