Is there any downside to using
typedef char bool;
enum boolean { false, true };
in C to provide a semantic boolean type?
|
|
|
In C99, you should be using Otherwise what you have is fine. Using just the enum may be a bit simpler, but if you really want to save space what you have works. |
|||||||||||
|
|
The short answer is: it's fine. It's particularly good if you needed to make large arrays of them, although I would be tempted to just use the C99 built-in1. Since you asked "is there any downside..." I suppose I could remark that there have been important machines that did not actually have a character load instruction. (The Cray and initial DEC Alpha come to mind.) Machines in the future may suddenly go all minimal once again. It will always be fast to load a standard integral type. It will probably always be fast to load a single character. 1. See C99 6.2.5. There is a built-in type |
||||
|
|
|
The downside of It would probably better either to use |
|||
|
|
|
I would suggest using a bit to represent true or false, rather than a character. A character uses 8 bits, We can set 1 for true and 0 for false with just 1 bit. That will be more memory efficient and also satisfies the purpose. (e.g) char flag:1; Reference : http://en.wikipedia.org/wiki/Bit_field |
|||||||||||||
|