Tagged Questions
863
votes
43answers
84k views
The Definitive C++ Book Guide and List [closed]
Unlike many other programming languages, which are often picked up on the go from tutorials found on the Internet, few are able to quickly pick up C++ without studying a good C++ book. It is way too ...
237
votes
27answers
256k views
How to split a string in C++?
What's the most elegant way to split a string in C++? The string can be assumed to be composed of words separated by whitespace.
(Note that I'm not interested in C string functions or that kind of ...
210
votes
14answers
11k views
In C++, 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?. One of the first posters says:
Stop using new so much. I can't see
any reason you used new ...
210
votes
8answers
44k views
Regular cast vs. static_cast vs. dynamic_cast
I've been writing C and C++ code for almost twenty years, but there's one aspect of these languages that I've never really understood. I've obviously used regular casts (i.e.
MyClass *m = (MyClass ...
199
votes
4answers
55k views
When should static_cast, dynamic_cast and reinterpret_cast be used?
I am reasonably proficient in C++, but I do not have a lot of experience using the cast operators to convert pointers of one type to another. I am familiar with the risks and benefits of pointer ...
165
votes
6answers
14k views
Do the parentheses after the type name make a difference with new?
If 'Test' is an ordinary class, is there any difference between:
Test* test = new Test;
//and
Test* test = new Test();
163
votes
21answers
77k views
What are the differences between pointer variable and reference variable in C++?
I know references are syntactic sugar, so easier code to read and write :)
But what are the differences?
Summary from answers and links below:
A pointer can be re-assigned any number of times ...
160
votes
2answers
9k views
What is the copy-and-swap idiom?
What is this idiom and when should it be used? Which problems does it solve? Will the idiom change when C++0x is used?
Although it's been mentioned in many places, we didn't have any singular "what ...
137
votes
5answers
5k views
What are rvalues, lvalues, xvalues, glvalues, and prvalues?
In C++03, an expression is either an rvalue or an lvalue.
In C++0x, an expression can be an:
rvalue
lvalue
xvalue
glvalue
prvalue
Two categories have become five categories.
What are these ...
120
votes
5answers
13k 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 ...
112
votes
7answers
42k views
What does the explicit keyword in C++ mean?
Someone posted in a comment to another question about the meaning of the explicit keyword in C++. So, what does it mean?
109
votes
4answers
5k views
Undefined Behavior and Sequence Points
What are "Sequence Points"?
What is the relation between Undefined Behaviour and Sequence Points?
I often use funny and convoluted expressions like a[++i] = i;, to make myself feel better. Why ...
109
votes
8answers
25k views
What are the rules about using an underscore in a C++ identifier?
It's common in C++ to name member variables with some kind of prefix to denote the fact that they're member variables, rather than local variables or parameters. If you've come from an MFC background, ...
95
votes
3answers
7k views
What is The Rule of Three?
What does copying an object mean? What are the copy constructor and the copy assignment operator? When do I need to declare them myself? How can I prevent my objects from being copied?
92
votes
4answers
23k views
What are POD types in C++?
I've been following SO for a bit now, and I've come across this term POD-type a few times... what does it mean?
91
votes
14answers
7k views
What are all the common undefined behaviour that a C++ programmer should know about?
Say like
a[i] = i++;
76
votes
7answers
6k views
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
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?
69
votes
18answers
4k views
Where do I find the current C or C++ standard documents?
For many questions, especially for C-related ones, the answer seems to be found in "the standard". However, where do we find that - online?
Googling can sometimes feel futile, again especially for the ...
68
votes
5answers
3k 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> ...
66
votes
9answers
11k views
What is a smart pointer and when should I use one?
What is a smart pointer and when should I use one?
65
votes
15answers
18k views
Why is 'using namespace std;' considered a bad practice in C++?
Okay, sorry for the simplistic question, but this has been bugging me ever since I finished high school C++ last year. I've been told by others on numerous occasions that my teacher was wrong in ...
62
votes
8answers
17k views
What is the slicing problem in C++?
Someone mentioned it in the IRC, but google doesn't have a good answer.
57
votes
10answers
14k views
C++: “std::endl” vs “\n”
Many C++ books contain example code like this...
std::cout << "Test line" << std::endl;
...so I've always done that too. But I've seen a lot of code from working developers like this ...
55
votes
2answers
2k 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 ...
55
votes
3answers
5k views
Where and why do I have to put the “template” and “typename” keywords?
In templates, where and why do I have to put typename and template on dependent names? What exactly are dependent names anyway? I have the following code:
template <typename T, typename Tail> ...
51
votes
19answers
119k views
size of int, long, etc
I'm looking for detailed informations regarding the size of basic C++ types.
I know that it depends on the architecture (16 bits, 32 bits, 64 bits) and the compiler.
But are there any standards ?
...
50
votes
11answers
6k views
What is the difference between a definition and a declaration?
As title says, the meaning of both eludes me.
40
votes
7answers
3k views
Can someone please explain move semantics to me?
I just finished listening to the Software Engineering talk radio podcast interview with Scott Meyers regarding C++0x. Most of the new features made sense to me and I am actually excited about C++0x ...
40
votes
16answers
10k views
What are the differences between struct and class in C++
This question was already asked in the context of C#/.Net.
Now I'd like to learn the differences between a struct and a class in C++. Please discuss the technical differences as well as reasons for ...
39
votes
5answers
2k views
Undefined, unspecified and implementation-defined behavior
What is the difference between undefined, unspecified, and implementation-defined behavior in C and C++?
36
votes
5answers
1k 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 ...
36
votes
7answers
9k views
what is the difference between const int*, const int * const, int const *
I always mess up how to use it correctly. Is there a set of rules defining what you can and cannot do?
I want to know all the Do's and all DoNOTs in terms of assignments, passing to the functions, ...
34
votes
5answers
7k views
How to pass objects to functions in C++?
I am new to C++ programming, but I have experience in Java. I need guidance on how to pass objects to functions in C++.
Do I need to pass pointers, references, or non-pointer and non-reference ...
34
votes
7answers
14k views
Does C++ support 'finally' blocks? (And what's this 'RAII' I keep hearing about?)
Does C++ support 'finally' blocks?
What is the RAII idiom?
What is the difference between C++'s RAII idiom and C#'s 'using' statement?
33
votes
2answers
634 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 ...
33
votes
7answers
4k views
Why is volatile not considered useful in multithreaded C or C++ programming?
As demonstrated in this answer I recently posted, I seem to be confused about the utility (or lack thereof) of volatile in multi-threaded programming contexts.
My understanding is this: any time a ...
32
votes
6answers
6k views
Why should one replace default new and delete operators?
Why should 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:
...
31
votes
10answers
8k views
Proper stack and heap usage in C++?
I've been programming for a while but It's been mostly Java and C#. I've never actually had to manage memory on my own. I recently began programming in C++ and I'm a little confused as to when I ...
31
votes
7answers
5k views
Why can templates only be implemented in the header file?
Quote from The C++ standard library: a tutorial and handbook:
The only portable way of using templates at the moment is to implement them in header files by using inline functions.
Why is this?
30
votes
11answers
1k views
What is the point of function pointers?
I have trouble seing the utility of the function pointers. I guess it may be useful in some cases (they exist, after all), but I can't think of a case where it's better or unavoidable to use a ...
29
votes
2answers
1k 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 ...
29
votes
2answers
2k views
What are Aggregates and PODs and how/why are they special?
This FAQ is about Aggregates and PODs and covers the following material:
What are Aggregates?
What are PODs (Plain Old Data)?
How are they related?
How and why are they special?
What changes for ...
29
votes
4answers
3k views
Why should the copy constructor accept its parameter by reference in C++?
Why must a copy constructor be passed its parameter by reference?
29
votes
4answers
9k views
What is external linkage and internal linkage in C++
I want to understand the external linkage and internal linkage and their difference. Also I want to know any const. variable in internally link by default unless otherwise stated as extern. What does ...
28
votes
2answers
774 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 ...
28
votes
2answers
2k 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 ...
28
votes
31answers
11k views
Memory management in C++
What are some general tips to make sure I don't leak memory in C++ programs ? How do I figure out who should free memory that has been dynamically allocated ?
27
votes
5answers
1k 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 ...
27
votes
2answers
2k views
What do the following phrases mean in C++: zero-, default- and value-initialization?
What do the following phrases mean in C++:
zero-initialization,
default-initialization, and
value-initialization?
What should a C++ developer know about them?