Provides a collaborative, community-edited C++ FAQ

learn more… | top users | synonyms

7
votes
1answer
440 views

Why aren't my include guards preventing recursive inclusion and multiple symbol definitions?

Two common questions about include guards: (*) FIRST QUESTION: Why aren't include guards protecting my header files from mutual, recursive inclusion? I keep getting errors about non-existing symbols ...
6
votes
1answer
395 views

Why are my struct's members not properly initialised using `{}`? [duplicate]

I had the following code: #include <iostream> struct T { int a, b, c; }; int main() { T t = {0}; std::cout << t.a << ',' << t.b << ',' << t.c << ...
16
votes
8answers
1k views

Is C/C++ one language or two languages?

Is C/C++ one language or two languages? I heard C++ was just C with classes. Is that right?
64
votes
3answers
3k views

When to make a type non-movable in C++11?

I was surprised this didn't show up in my search results, I thought someone would've asked this before, given the usefulness of move semantics in C++11: When do I have to (or is it a good idea for ...
50
votes
1answer
2k views

Does const mean thread-safe in C++11?

I hear that const means thread-safe in C++11. Is that true? Does that mean const is now the equivalent of Java's synchronized? Are they running out of keywords?
8
votes
1answer
563 views

Should I include <xxxx.h> or <cxxxx> in C++ programs?

What should I include in C++ programs, stdio.h or cstdio? and Why? Why two header files which provide the same functionality? What does the standard say regarding this? How ...
34
votes
6answers
1k views

What are the advantages of using nullptr?

This piece of code conceptually does the same thing for the three pointers (safe pointer initialization): int* p1 = nullptr; int* p2 = NULL; int* p3 = 0; And so, what are the advantages of ...
8
votes
3answers
641 views

What are copy elision and return value optimization?

What is copy elision? What is (named) return value optimization? What do they imply? In what situations can they occur? What are limitations? If you were referenced to this question, you're ...
18
votes
1answer
5k views

gcc/g++: “No such file or directory”

g++ gives me errors of the form: foo.cc:<line>:<column>: fatal error: <bar>: No such file or directory compilation terminated. It is the same when compiling C-programs with gcc. ...
60
votes
7answers
6k views

What is an undefined reference/unresolved external symbol error and how do I fix it?

What are undefined reference/unresolved external symbol errors? What are common causes and how to fix them? Feel free to edit/add your own.
7
votes
0answers
246 views

How C++ destructor works [duplicate]

Possible Duplicate: Object destruction in C++ destructor checking in C++ I want a simple program to see how destructor works in C++? I basically do not understand when the destructor is ...
7
votes
3answers
525 views

Where can I find all the exception guarantees for the Standard Containers and Algorithms?

Yes, I've looked at the C++ standards that I could find (or the drafts), but I'm not finding any comprehensive of the exception guarantees given by STL containers. All I can find are occasional ...
22
votes
4answers
3k views

Passing shared pointers as arguments

If I declare an object wrapped in a shared pointer: std::shared_ptr<myClass> myClassObject(new myClass()); then I wanted to pass it as an argument to a method: DoSomething(myClassObject); ...
46
votes
2answers
2k views

How can I efficiently select a Standard Library container in C++11?

There's a well known image (cheat sheet) called "C++ Container choice". It's a flow chart to choose the best container for the wanted usage. Does anybody know if there's already a C++11 version of ...
60
votes
2answers
6k views

What XML parser should I use in C++?

Note: This is intended to be a definitive, C++-FAQ-style question for this. So yes, it is a duplicate of others. I did not simply appropriate those other questions because they tended to ask for ...
74
votes
9answers
4k views

Why does the use of 'new' cause memory leaks?

I learned C# first, and now I'm starting with C++. As I understand, operator new in C++ is not similar to the one in C#. Can you explain the reason of the memory leak in this sample code? class A { ...
9
votes
3answers
2k views

What are the stages of compilation of a C++ program?

Are the stages of compilation of a C++ program specified by the standard? If so, what are they? If not, an answer for a widely-used compiler (I'd prefer MSVS) would be great. I'm talking about ...
75
votes
4answers
5k views

Which kind of pointer do I use when?

Ok, so the last time I wrote C++ for a living, std::auto_ptr was all the std lib had available, and boost::shared_ptr was all the rage. I never really looked into the other smart pointer types boost ...
5
votes
3answers
301 views

Conversion from Derived** to Base**

I was reading this and unfortunately could not understand in depth why the compiler does not allow conversion from Derived** to Base**. Also I have seen this which gives no more info than the ...
133
votes
3answers
20k views

What is a lambda expression in C++11?

What is a lambda expression in C++11? When would I use one? What class of problem do they solve that wasn't possible prior to their introduction? A few examples, and use cases would be useful.
18
votes
2answers
1k views

What happens when an exception goes unhandled in a multithreaded C++11 program?

If I have a C++11 program running two threads, and one of them throws an unhandled exception, what happens? Will the entire program die a fiery death? Will the thread where the exception is thrown die ...
27
votes
4answers
2k views

How should I write ISO C++ Standard conformant custom new and delete operators?

How should I write ISO C++ standard conformant custom new and delete operators? This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ, Operator overloading, and ...
44
votes
7answers
8k views

Why would one replace default new and delete operators?

Why should would one replace the default operator new and delete with a custom new and delete operators? This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ: ...
7
votes
2answers
2k views

What does it mean to have an undefined reference to a static member?

I just wrote a class with some static data members, but now I am getting errors about "undefined references". Why doesn't this work? What am I doing wrong? (Note: This is meant to be an entry to ...
2
votes
5answers
1k views

rand function returns same values when called within a single function c++

I'm a c++ newbie and I'm stumped on this. I need to call this function in my main function three times but each time it gives me the same result i.e. pull_1, pull_2, pull_3 are the same. What do I ...
321
votes
14answers
17k views

Why should `new` be used as little as possible?

I stumbled upon the Stack Overflow question Memory leak with std::string when using std::list<std::string> and one of the comments says this: Stop using new so much. I can't see any reason ...
71
votes
3answers
7k views

Iterator invalidation rules

What are the iterator invalidation rules for C++ containers? Preferably in a summary list format. (Note: This is meant to be an entry to Stack Overflow's C++ FAQ. If you want to critique the idea ...
30
votes
2answers
3k views

Object destruction in C++

When exactly are objects destroyed in C++, and what does that mean? Do I have to destroy them manually, since there is no Garbage Collector? How do exceptions come into play? (Note: This is meant to ...
38
votes
3answers
10k views

How does the compilation, linking process work?

I've been programming in C++ for a while and I wondered how the compiler and linking process actually works? Can someone explain please? (Note: This is meant to be an entry to Stack Overflow's ...
61
votes
2answers
3k views

Is the safe-bool idiom obsolete in C++11?

This answer of @R. Martinho Fernandes shows, that the safe-bool idiom is apperently deprecated in C++11, as it can be replaced by a simple explicit operator bool() const; according to the standard ...
47
votes
2answers
5k views

Polymorphism in c++

AFAIK: C++ provides three different types of polymorphism. Virtual functions Function name overloading Operator overloading In addition to the above three types of polymorphism, there exist other ...
11
votes
5answers
573 views

What to watch out for when converting a std::string to a char* for C function?

I have read many posts asking the question on how to convert a C++ std::string or const std::string& to a char* to pass it to a C function and it seems there is quite a few caveat's in regards to ...
42
votes
3answers
3k views

Why is iostream::eof inside a loop condition considered wrong?

I just found a comment in this answer saying that using iostream::eof in a loop condition is "almost certainly wrong". I generally use something like while(cin>>n) - which I guess implicitly ...
128
votes
3answers
9k views

What does T&& mean in C++11?

I've been looking into some of the new features of C++11 and one I've noticed is the double ampersand in declaring variables, like T&& var. For a start, what is this beast called? I wish ...
7
votes
2answers
13k views

What are access specifiers? Should I inherit with private, protected or public?

I am confused about the meaning of access modifiers with respect to inheritance. What is the difference between inheritance involving the private, protected and public keywords?
35
votes
4answers
19k views

How to convert a number to string and vice versa in C++

Since this question gets asked about every week, this FAQ might help a lot of users. How to convert an integer to a string in C++ how to convert a string into an integer in C++ how to convert a ...
99
votes
5answers
12k 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. ...
18
votes
2answers
4k views

How to get IOStream to perform better?

Most previously C-users prefer to use the printf / scanf family of functions even in C++. Although I admit that I find the interface way better (especially POSIX-like format and localization), it ...
16
votes
6answers
9k views

Why are C++ inline functions in the header

NB This is not a question about how to use inline functions or how they work, more why they are done the way they are. The declaration of a class member function does not need to define a function as ...
46
votes
2answers
4k views

What C++ Smart Pointer Implementations are available?

Comparisons, Pros, Cons, and When to Use? This is a spin-off from a garbage collection thread where what I thought was a simple answer generated a lot of comments about some specific smart pointer ...
40
votes
2answers
8k views

When do I use a dot, arrow, or double colon to refer to members of a class in C++?

Coming from other C-derived languages (like Java or C#) to C++, it is at first very confusing that C++ has three ways to refer to members of a class: a::b, a.b, and a->b. When do I use which one of ...
152
votes
5answers
24k views

How do I use arrays in C++?

C++ inherited arrays from C where they are used virtually everywhere. C++ provides abstractions that are easier to use and less error-prone (std::vector<T> since C++98 and std::array<T, n> ...
37
votes
5answers
3k views

Undefined Behavior and Sequence Points Reloaded

Consider this topic a sequel of the following topic: Previous Installment Undefined Behavior and Sequence Points Let's revisit this funny and convoluted expression (the italicized phrases ...
419
votes
6answers
142k views

Operator overloading

What are the basic rules and idioms for operator overloading in C++? Note: The answers were given in a specific order, but since many users sort answers according to votes, rather than the time they ...
7
votes
5answers
5k views

Does std::list::remove method call destructor of each removed element?

std::list<Node *> lst; //.... Node * node = /* get from somewhere pointer on my node */; lst.remove(node); Does std::list::remove method call destructor(and free memory) of each removed ...
4
votes
6answers
730 views

Why do I see strange values when I print uninitialized variables?

following, variable in code has no initial value and printed this variable. int var; cout << var << endl; output : 2514932 double var; cout << var << endl; output : ...
21
votes
2answers
569 views

Semantics of flags on basic_ios

I find myself repeatedly baffled by the rdstate() flags - good(), bad(), eof(), fail() - and how they are expressed in basic_ios::operator!, operator bool and operator void*. Could somebody put me ...
10
votes
3answers
1k views

FAQ: Why does dynamic_cast only work if a class has at least 1 virtual method?

This does not compile in C++: class A { }; class B : public A { }; ... A *a = new B(); B *b = dynamic_cast<B*>(a);
17
votes
2answers
773 views

Lifetime of temporaries

The following code works fine, but why is this correct code? Why is the "c_str()" pointer of the temporary returned by foo() valid? I thought, that this temporary is already destroyed when bar() is ...
8
votes
3answers
7k views

How to traverse an stl map/vector/list/etc?

In need to know how to traverse an stl map. I don't want to use its key. I don't care about the ordering, just a way to access all elements it contains. Is there a way to do this?

1 2 3