For example if I have an Enum with two cases, does it make take more memory than a boolean? Languages: Java, C++
|
|
In Java, an enum is a full-blown class:
So the size of an enum in Java will be a little bit more heavier than a plain integer. |
||
|
|
|
|
In Java, there should only be one instance of each of the values of your enum in memory. A reference to the enum then requires only the storage for that reference. Checking the value of an enum is as efficient as any other reference comparison. |
||
|
|
|
|
Modern processors load data from main memory as a whole cache line, 64 bytes. The difference between loading one byte from L1 cache and loading four bytes is negligible. If you're trying to optimise for cache lines in a very high-performance application, then you might worry about how big your enum is, but generally I'd say it's clearer to define an enum than to use a boolean. |
||
|
|
|
|
You would only worry about this when storing large quantities of enums. For Java, you may be able to use an EnumSet in some cases. It uses a bit vector internally which is very space efficient and fast. http://java.sun.com/j2se/1.5.0/docs/api/java/util/EnumSet.html |
||
|
|
|
|
In Java, it would take more memory. In C++, it would take no memory than required for a constant of the same type (it's evaluated at compile-time and has no residual significance at runtime). In C++, this means that the default type for an enum will occupy the same space as an int. |
||
|
|
|
|
|
||
|
|
|
|
No, an enum is generally the same size as an int, same as boolean. |
||||||||||
|
|
|
In C++ an enum is typically the same size as an |
||
|
|
|
|
In ISO C++ there is no obligation for an enum to be larger than its largest enumerator requires. In particular, enum {TRUE, FALSE} may have sizeof(1) even when sizeof(bool)==sizeof(int). There is simply no requirement. Some compilers make the enums the same size as an int. That is a compiler feature, which is allowed because the standard only imposes a minimum. Other compilers use extensions to control the size of an enum. |
||
|
|
|
If your enum will ever have only two cases, indeed using a boolean instead might be a better idea (memory size, performance, usage/logic), even more in Java. |
||
|
|
|
|
sizeof(enum) depends upon what you have in the enum. I was recently trying to find the size of an ArrayList() with default constructor params and no objects stored inside (which means the capacity to store is 10). It turned out that ArrayList is not too big < 100 bytes. So, sizeof(enum) for a very simple enum should be less than 10 bytes. you can write a small program, give it a certain amount of memory and then try allocating enums. you should be able to figure it out(that's how i found out the memory of ArrayList) BR, |
||
|
|
|
|
In C/C++ an enum will be the same size as an int. With gcc you can add attribute((packed)) to the enum definition to make it take the minimum footprint. If the largest value in the enum is < 256 this will be one byte, two bytes if the largest value is < 65536, etc.
|
||||
|
|
|
Regardless of which one takes less memory, you should always be using a boolean for situations like this. |
||
|
|
|
|
Why does the size of an enum matter? Do you have some application which is trying to pack memory efficiently? If so, use a bit field. Otherwise, stop doing early optimization. |
||
|
|
