Is it acceptable to assign 'NULL' to a boolean datatype?
|
|
|||
|
|
|
Even if this is technically possible to do, I would avoid it. It seems that if you need a null value, you should model to a different data type than Boolean. If you are going to use Boolean, properly design your module and code to use it as designed: with two potential values, not three. If you need three, use another data type, like int or string, and have each of the three values mean something (in string, null string would mean null). |
||
|
|
|
|
You can do that, but I don't see the point. Suppose you have:
Why not just write it as:
It's clearer and any decent compiler will generate the same code. |
||
|
|
|
|
In general it will work, since pointers are designed to be usable in a boolean context:
or
This is done on purpose (see dirkgently's answer for the standard reference) to allow this usage. If you are using this syntax:
Then you are probably being misleading, but it's going to work in a portable, predictable fashion. Either NULL is defined to be 0, in which case, you will get a false value, or if NULL is truly a NULL pointer, then it will evaluate to false as well. |
||
|
|
|
|
NULL is not by definition 0. I don't know of any, but there could be some compilers that use a non-zero value for NULL, or perhaps even set some flag in a thunk behind its address. It would be just your luck that your code gets ported to one. It would be just my luck that I'd have to fix the resulting bugs. So I say, "No, it is not acceptable." |
||
|
|
|
|
Since NULL is usually not 0 but |
||||
|
|
|
From my copy of n2798:
and
So, yes, it seems likely that you can do that. |
||||
|
|
|
From a theoretical point of view, yes. But it's a horrible thing to do.
Here are the references to the Standard if you are interested in any case. First, a null pointer constant is (
Then, what happens if we convert a null pointer constant to
(When it talks about Now, what actually is that
The important bit of that combination is the part " Another important thing about null pointers to understand is the different between a
Because it is a integral constant expression (that is essentially an integer value that is known at compile time) with value zero. The following is a null pointer value
but it is not a null pointer constant. But anyway, also null pointer values are converted to bool as the above quote tells: " |
||||
|
|
|
I'm not sure why you want to do that. If you're trying to initialize it, use 0. As MSN said, your compiler is not going to reject it. Perhaps you should explain why you want to set a bool to NULL in the first place? |
||
|
|
|
|
My opinion is that this will reduce the readability of your code, but sure if you want to. NULL is just 0 after all. |
||
|
|
|
|
As long as false is still 0 and NULL is still defined to 0 yes, but this can change in the future. I'd say its bad practice because u mix concepts and lose clarity. |
||
|
|
|
|
No, You should use the technical term - "File Not Found" edit: Reference: http://thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx The proper answer is No. What I think you are trying to do is use NULL to mean "Uninitialized" or "Dunno, yet." This will usually work in a database, but won't always work in code as the definition of NULL varies from preprocessor to preprocessor and language to language. Booleans are by definition two-state values. To try to use them as three-state values is an error. At best it's a dirty hack that will cause confusion to other developers in the future, at worst it's a breaking error, that will bite you in the behind as soon as anything in your build chain changes. |
||||
|
|
|
The compiler won't reject it since NULL is usually a preprocessor #define for 0 and 0 is convertable to a pointer representation of NULL and false. |
||||
|
