Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k views

size_t vs container::size_type

I'm wondering if there's a difference in using size_t and container::size_type? What I understand is size_t is more generic and can be used for any size_types.. Is container::size_type more ...
7
votes
10answers
2k views

size_t vs int in C++ and/or C

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?
4
votes
4answers
170 views

How do all the different size types relate to each other?

Currently I have a scenario where I want to check whether writing a given string to a filestream will grow the file beyond a given size (this is used for logfile rotation). Now, std::ofstream::tellp() ...
3
votes
4answers
621 views

C++ for-loop - size_type vs. size_t

In the C++ Primer book, Chapter (3), there is the following for-loop that resets the elements in the vector to zero. for (vector<int>::size_type ix = 0; ix ! = ivec.size(); ++ix) ivec[ix] = 0; ...
3
votes
2answers
2k views

string::size_type instead of int

const std::string::size_type cols = greeting.size() + pad * 2 + 2; Why string::size_type? int is supposed to work! it holds numbers!!!
2
votes
3answers
418 views

C++ - vector<int>::size_type

What is meant by this C++ statement? vector<int>::size_type x; And, what is the use of the scope operator :: here? In other words, how do we read this statement in English? For example, for ...
2
votes
5answers
357 views

Do I really need to return Type::size_type?

I often have classes that are mostly just wrappers around some STL container, like this: class Foo { public: typedef std::vector<whatever> Vec; typedef Vec::size_type size_type; const ...
1
vote
2answers
153 views

Is string::size_type really big enough to hold any string?

I browsed through some threads about string::size_type here and I do understand according to C++ standards that this size_type guarantees enough allocation for all string usage. I just find that hard ...
0
votes
3answers
172 views

C++: Where is string::size_type documented?

I was searching the web for how to manipulate (tokenize) strings, and started to find many references to string::size_type, something I didn't understand at all at first... I have searched some more ...
0
votes
2answers
304 views

Issue regarding size_t

If you go in my post history you'll see that i'm trying to develop an interpreter for a language that i'm working on. I want to use *size_t* using two different codes, but they all return nothing. ...