Why is it that in C++ containers, it returns a size_type rather than an int? If we're creating our own structures, should we also be encouraged to use size_type?
|
1
|
|
||||
|
|
|
In general, The other interesting constraints from the C++ and C Standards are:
If you are counting bytes, then you should definitely be using |
||||||||
|
|
|
A few reasons might be:
If you're writing an app that's just for you and/or throwaway, you're probably fine to use a basic int. If you're writing a library or something substantial, size_t is probably a better way to go. |
||
|
|
|
|
ints are not guaranteed to be 4 bytes in the specification, so they are not reliable. Yes, size_type would be preferred over ints |
||||||
|
|
|
I assume you mean "size_t" -- this is a way of indicating an unsigned integer (an integer that can only be positive, never negative) -- it makes sense for containers' sizes since you can't have an array with a size of -7. I wouldn't say that you have to use size_t but it does indicate to others using your code "This number here is always positive." It also gives you a greater range of positive numbers, but that is likely to be unimportant unless you have some very big containers. |
||||
|
|
|
All containers in the stl have various typedefs. For example, If you are creating your own containers, you should use
If you want a container's size, you should write
What's nice is that if later you want to use a list, just change the typedef to
And it will still work! |
||
|
|
|
|
C++ is a language that could be implemented on different hardware architectures and platforms. As time has gone by it has supported 16-, 32-, and 64-bit architecture, and likely others in the future. Assuming the
|
|||
|
|
|
|
f1() and f2() both have the same bug, but detecting the problem in f2() is easier. For more complex code, unsigned integer arithmetic bugs are not as easy to identify. Personally I use signed int for all my sizes unless unsigned int should be used. I have never run into situation where my size won't fit into a 32 bit signed integer. I will probably use 64 bit signed integers before I use unsigned 32 bit integers. The problem with using signed integers for size is a lot of |
||
|
|
|
|
For your own code, if you need to represent something that is a "size" conceptually and can never be negative, |
||
|
|
|
|
About size_t |
||
|
|
|
|
Some of the answers are more complicated than necessary. A size_t is an unsigned integer type that is guaranteed to be big enough to store the size in bytes of any object in memory. In practice, it is always the same size as the pointer type. On 32 bit systems it is 32 bits. On 64 bit systems it is 64 bits. |
||
|
|
