Tagged Questions
The Standard Template Library, or STL, is a C++ library of generic containers, iterators, algorithms, and function objects. It was originally published by SGI. When C++ was standardised, large parts of the STL were adopted into the Standard Library, and these parts in the Standard Library are also sometimes referred to collectively as "the STL".
121
votes
11answers
38k views
std::wstring VS std::string
I am not able to understand the differences between std::string and std::wstring. I know wstring supports wide characters such as Unicode characters. I have got the following questions:
When should ...
98
votes
12answers
4k views
Throwing the fattest people off of an overloaded airplane.
Let's say you've got an airplane, and it is low on fuel. Unless the plane drops 3000 pounds of passenger weight, it will not be able to reach the next airport. To save the maximum number of lives, ...
80
votes
30answers
9k views
Hidden Features and Dark Corners of STL?
C++ developers, all know the basics of C++: Declarations, conditionals, loops, operators, etc.
Some of us even mastered the stuff like templates, object model, complex I/O, etc.
But what are the ...
69
votes
5answers
7k views
Why is it wrong to use std::auto_ptr<> with standard containers?
Why is it wrong to use std::auto_ptr<> with standard containers?
59
votes
22answers
7k views
Why use iterators instead of array indices?
Take the following two lines of code:
for (int i = 0; i < some_vector.size(); i++)
{
//do stuff
}
And this:
for (some_iterator = some_vector.begin(); some_iterator != some_vector.end();
...
57
votes
4answers
14k views
How do I print the elements of a C++ vector in GDB?
I want to examine the contents of a std::vector in GDB, how do I do it? Let's say it's a std::vector<int> for the sake of simplicity.
54
votes
29answers
6k views
What C++ pitfalls should I avoid? [closed]
I remember first learning about vectors in the STL and after some time, I wanted to use a vector of bools for one of my projects. After seeing some strange behavior and doing some research, I learned ...
53
votes
11answers
4k views
STL or Qt containers?
What are the pros and cons of using Qt containers (QMap, QVector, etc.) over their STL equivalent?
I can see one reason to prefer Qt:
Qt containers can be passed along to other parts of Qt. For ...
50
votes
13answers
2k views
Embarassing C++ question regarding const
My comments on this answer got me thinking about the issues of constness and sorting. I played around a bit and reduced my issues to the fact that this code:
#include <vector>
int main() {
...
50
votes
7answers
8k views
Examples of “modern c++” in action? [closed]
For new and completely revised tricks and dark corners of STL go here: Hidden Features and Dark Corners of STL
I've been using more "modern" c++ constructs for a while, but kind of superficially and ...
49
votes
11answers
25k views
Why does the C++ STL not provide any “tree” containers?
Why does the C++ STL not provide any "tree" containers, and what's the best thing to use instead?
I want to store a hierarchy of objects as a tree, rather than use a tree as a performance ...
47
votes
13answers
3k views
std::vector is so much slower than plain arrays?
I've always thought it's the general wisdom that std::vector is "implemented as an array," blah blah blah. Today I went down and tested it, seems to be not so:
Here's some test results:
UseArray ...
42
votes
9answers
2k views
Is there “magic” in the STL?
Let me start with explaining what I mean with "magic". I will use two examples from Java:
Every class inherits (directly or indirectly) the Object class.
Operator overloading is not supported by ...
41
votes
5answers
10k views
C++ STL Vectors: Get iterator from index?
So, I wrote a bunch of code that accesses elements in an stl vector by index[], but now I need to copy just a chunk of the vector. It looks like vector.insert(pos, first, last) is the function I ...
41
votes
5answers
32k views
STL String to lower case
I want to convert an STL String to lowercase. I am aware of the function tolower() however in the past I have had issues with this function and it is hardly ideal anyway as use with a string would ...
40
votes
8answers
1k views
When does Endianness become a factor?
Endianness from what I understand, is when the bytes that compose a multibyte word differ in their order, at least in the most typical case. So that an 16-bit integer may be stored as either 0xHHLL ...
39
votes
5answers
3k views
What's this STL vs. “C++ Standard Library” fight all about? [closed]
Someone brought this article to my attention that claims (I'm paraphrasing) the STL term is misused to refer to the entire C++ Standard Library instead of the parts that were taken from SGI STL.
...
38
votes
11answers
4k views
Why is a C++ Vector called a Vector?
The question's pretty self-explanatory really. I know vaguely about vectors in maths, but I don't really see the link to C++ vectors. Thanks!
37
votes
10answers
2k views
Why do std::string operations perform poorly?
I made a test to compare string operations in several languages for choosing a language for the server-side application. The results seemed normal until I finally tried C++, which surprised me a lot. ...
36
votes
4answers
6k views
Generic vector of vectors in C++
Is there a good way in C++ to implement (or fake) a type for a generic vector of vectors?
Ignore the issue of when a vector of vectors is a good idea (unless there's something equivalent which is ...
36
votes
8answers
24k views
how-to initialize 'const std::vector<T>' like a c array
Is there an elegant way to create and initialize a const std::vector<const T> like const T a[] = { ... } to a fixed (and small) number of values?
I need to call a function frequently which ...
33
votes
9answers
14k views
C++ STL: should I store entire objects, or pointers to objects?
Designing a new system from scratch. I'll be using the STL to store lists and maps of certain long-live objects.
Question: Should I ensure my objects have copy constructors and store copies of ...
32
votes
12answers
2k views
Should programmers use STL or write their own code? [closed]
I don't know much about C++ data structures but I am wondering do you (programmers) use STL or write your own code? After all STL is designed for doing tasks like searching, replacing and much more ...
32
votes
5answers
5k views
C++ valarray vs. vector
So, I like vectors a lot. They're nifty and fast. But I know this thing called a valarray exists. Why would I use a valarray instead of a vector? I know valarrays have some syntactic sugar, but other ...
32
votes
11answers
2k views
Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)
I mean, aside from its obligating name (the Standard Template Library)...
C++ initially intended to present OOP concepts into C. That is: you could tell what a specific entity could and couldn't do ...
31
votes
4answers
632 views
Why use non-member begin and end functions in C++11?
Every standard container has a begin and end function for returning iterators for that container. However, C++11 has apparently introduced free functions called begin and end which call the begin and ...
31
votes
4answers
7k views
How to reuse an ostringstream?
I'd like to clear out and reuse an ostringstream (and the underlying buffer) so that my app doesn't have to do as many allocations. How do I reset the object to its initial state?
29
votes
5answers
834 views
Why do I need std::get_temporary_buffer?
For what purpose I should use std::get_temporary_buffer? Standard says the following:
Obtains a pointer to storage sufficient to store up to n adjacent T objects.
I thought that the buffer will ...
29
votes
4answers
14k views
29
votes
8answers
32k views
Remove spaces from std::string in C++
What is the preferred way to remove spaces from a string in C++? I could loop through all the characters and build a new string, but is there a better way?
28
votes
4answers
3k views
Why there is no std::copy_if algorithm?
Is there any specific reason for not having std::copy_if algorithm in C++ ? I know I can use std::remove_copy_if to achieve the required behavior. I think it is coming in C++0x, but a simple copy_if ...
28
votes
7answers
7k views
Why can't I make a vector of references?
When I do this:
std::vector<int> hello;
Everything works great. However, when I make it a vector instead:
std::vector<int &> hello;
I get horrible errors like "error C2528: ...
28
votes
9answers
1k views
Good book for learning the C++ standard template library? [closed]
I'm looking for a good tutorial book on the C++ Standard Template Library. I don't want a reference, there are plenty of them online, but rather a book that will lead me through using the various ...
27
votes
0answers
793 views
Why can't I get swig wrap std::vector to Ruby class?
I have an application with an embedded Ruby interpreter, and interfaces to STL classes generated by swig.
Pretty much everything worked out fine thanks to swig, except for one thing:
%module Stuff
...
27
votes
2answers
3k views
push_back vs emplace_back
I'm a bit confused regarding the difference between push_back and emplace_back.
void emplace_back(Type&& _Val);
void push_back(const Type& _Val);
void push_back(Type&& _Val);
As ...
27
votes
10answers
632 views
Is end() required to be constant in an STL map/set?
ยง23.1.2.8 in the standard states that insertion/deletion operations on a set/map will not invalidate any iterators to those objects (except iterators pointing to a deleted element).
Now, consider the ...
27
votes
4answers
9k views
C++ map access discards qualifiers (const)
The following code says that passing the map as const into the operator[] method discards qualifiers:
#include <iostream>
#include <map>
#include <string>
using namespace std;
...
27
votes
9answers
25k views
std::map insert or std::map find?
Assuming a map where you want to preserve existing entries. 20% of the time, the entry you are inserting is new data. Is there an advantage to doing std::map::find then std::map::insert using that ...
27
votes
5answers
5k views
How to overload std::swap()
std::swap() is used by many std containers (such as std::list and std::vector) during sorting and even assignment.
But the std implementation of swap() is very generalized and rather inefficient for ...
26
votes
13answers
940 views
When should you use an STL other than the one that comes with your compiler?
I was curious about STL implementations outside of what's packaged with gcc or Visual Studio, so a quick Google search turned up a few results, such as:
Apache stdcxx
uSTL
rdeSTL
Under what ...
26
votes
13answers
3k views
To STL or !STL, that is the question
Unquestionably, I would choose to use the STL for most C++ programming projects. The question was presented to me recently however, "Are there any cases where you wouldn't use the STL?"...
The more I ...
25
votes
4answers
589 views
Does std::vector::swap invalidate iterators?
If I swap two vectors, will their iterators remain valid, now just pointing to the "other" container, or will the iterator be invalidated?
That is, given:
using namespace std;
vector<int> ...
25
votes
14answers
2k views
What is so great about STL?
I am a Java developer trying to learn C++. I have many times read on the internet (including Stack Overflow) that STL is the best collections library that you can get in any language. (Sorry, I do not ...
24
votes
6answers
778 views
Why use functors over functions?
Compare
double average = CalculateAverage(values.begin(), values.end());
with
double average = std::for_each(values.begin(), values.end(), CalculateAverage());
What are the benefits of using a ...
24
votes
9answers
4k views
Embedded C++ : to use STL or not?
I have always been an embedded software engineer, but usually at Layer 3 or 2 of the OSI stack. I am not really a hardware guy. I have generally always done telecoms products, usually ...
24
votes
3answers
8k views
Debugging Best Practices for C++ STL/Boost with gdb
Debugging with gdb, any c++ code that uses STL/boost is still a nightmare. Anyone who has used gdb with STL knows this. For example, see sample runs of some debugging sessions in code here.
I am ...
23
votes
7answers
1k views
Why should one not derive from c++ std string class?
I wanted to ask about a specific point made in Effective C++.
It says:
A destructor should be made virtual if a class needs to act like a polymorphic class. It further adds that since ...
23
votes
1answer
576 views
std::vector, default construction, C++0x and breaking changes
I ran today against a quite subtle issue I'd like to have your opinion on.
Consider the following garden-variety shared-body-idiom class:
struct S
{
S() : p_impl(new impl) {}
private:
struct ...
23
votes
4answers
2k views
Why is std::map implemented as red-black tree?
WHY is std::map implemented as a red-black tree?
There are several balanced BST out there, what were design trade-offs in choosing red-black tree?
Note, I'm not asking what are RB-trees or ...
23
votes
11answers
8k views
Is there a production ready lock-free queue or hash implementation in C++
I ve been googling quite a bit for a lock-free queue in C++. I found some code and some trials - but nothing that i was able to compile. A lock-free hash would also be welcome.
SUMMARY:
So far i have ...