Tagged Questions
C++ is a widely-used, statically-typed, free-form, compiled, multi-paradigm, multi-level, imperative, general-purpose, object-oriented programming language based on C.
4664
votes
11answers
241k views
Why is processing a sorted array faster than an unsorted array?
Here is a piece of C++ code that shows some very peculiar performance. For some strange reason, sorting the data miraculously speeds up the code by almost 6x:
#include <algorithm>
#include ...
2696
votes
49answers
332k views
The Definitive C++ Book Guide and List
This question attempts to collect the few pearls among the dozens of bad C++ books that are released every year.
Unlike many other programming languages, which are often picked up on the go from ...
2025
votes
17answers
135k views
What is the name of this operator: “-->”? [closed]
After reading "Hidden Features and Dark Corners of C++/STL" on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both Visual Studio 2008 and G++ 4.4. The code:
...
1146
votes
18answers
118k views
Cycles in family tree software
I am the developer of some family tree software (written in C++ and Qt). I had no problems until one of my customers mailed me a bug report. The problem is that he has two children with his own ...
719
votes
10answers
113k views
Why is one loop so much slower than two loops?
Suppose a1, b1, c1, and d1 point to heap memory and my numerical code has the following core loop.
const int n=100000
for(int j=0;j<n;j++){
a1[j] += b1[j];
c1[j] += d1[j];
}
This loop ...
641
votes
39answers
514k views
Splitting 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 ...
638
votes
3answers
73k views
Why does changing 0.1f to 0 slow down performance by 10x?
Why does this bit of code,
const float x[16] = { 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8,
1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6};
const float ...
557
votes
14answers
47k views
Is < faster than <=? [closed]
I'm reading a book where the author says that if( a < 901 ) is faster than if( a <= 900 ).
Not exactly as in this simple example, but there are slight performance changes on loop complex code. ...
519
votes
21answers
152k views
What can I use to profile C++ code in Linux? [closed]
I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code?
484
votes
10answers
26k views
In C arrays why is this true? a[5] == 5[a]
As Joel points out in Stack Overflow podcast #34, in C Programming Language (aka: K & R), there is mention of this property of arrays in C: a[5] == 5[a]
Joel says that it's because of pointer ...
484
votes
9answers
102k 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 ...
453
votes
13answers
31k views
Algorithm improvement for Coca-Cola can shape recognition
One of the most interesting projects I've worked in the past couple years as I was still a student, was a final project about image processing. The goal was to develop a system to be able to recognize ...
451
votes
3answers
105k 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 ...
449
votes
20answers
181k views
420
votes
7answers
141k 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?
419
votes
6answers
143k 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 ...
413
votes
6answers
32k 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?
413
votes
18answers
152k 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 ...
412
votes
3answers
53k views
Why is my program slow when looping over exactly 8192 elements?
Here is the extract from the program in question. The matrix img[][] has the size SIZEĆSIZE, and is initialized at:
img[j][i] = 2 * j + i
Then, you make a matrix res[][], and each field in here is ...
410
votes
5answers
29k views
C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?
C++11 introduced a standardized memory model, but what exactly does that mean? And how is it going to affect C++ programming?
Herb Sutter says here that,
The memory model means that C++ code
...
392
votes
2answers
37k views
What is the copy-and-swap idiom?
What is this idiom and when should it be used? Which problems does it solve? Does the idiom change when C++11 is used?
Although it's been mentioned in many places, we didn't have any singular "what ...
325
votes
106answers
180k views
Printing 1 to 1000 without loop or conditionals [closed]
Task: Print numbers from 1 to 1000 without using any loop or conditional statements. Don't just write the printf() or cout statement 1000 times.
How would you do that using C or C++?
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 ...
319
votes
11answers
51k views
Why is reading lines from stdin much slower in C++ than Python?
I wanted to compare reading lines of string input from stdin using Python and C++ and was shocked to see my C++ code run an order of magnitude slower than the equivalent Python code. Since my C++ is ...
313
votes
5answers
25k 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();
311
votes
15answers
22k views
Can code that is valid in both C and C++ produce different behavior when compiled in each language?
C and C++ have many differences, and not all valid C code is valid C++ code.
(By "valid" I mean standard code with defined behavior, i.e. not implementation-specific/undefined/etc.)
Is there any ...
303
votes
32answers
21k views
What are the barriers to understanding pointers and what can be done to overcome them?
Why are pointers such a leading factor of confusion for many new, and even old, college level students in C or C++? Are there any tools or thought processes that helped you understand how pointers ...
288
votes
22answers
30k views
Which is better option to use for dividing an integer number by 2?
Which of the following techniques is the best option for dividing an integer by 2 and why?
Technique 1:
x = x >> 1;
Technique 2:
x = x / 2;
Here x is an integer.
278
votes
10answers
158k views
How do you declare an interface in C++?
How do I setup a class that represents an interface? Is this just an abstract base class?
270
votes
7answers
13k views
What are rvalues, lvalues, xvalues, glvalues, and prvalues?
In C++03, an expression is either an rvalue or an lvalue.
In C++11, an expression can be an:
rvalue
lvalue
xvalue
glvalue
prvalue
Two categories have become five categories.
What are these ...
258
votes
7answers
52k 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, ...
257
votes
15answers
96k views
Vim and Ctags tips and tricks [closed]
I have just installed Ctags (to help with C++ development) with my Vim (or rather gVim), and would like to find out your favorite commands, macros, shortcuts, tips that go along with it...
Share your ...
255
votes
12answers
75k 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 ...
251
votes
12answers
38k views
What is the difference between #include <filename> and #include “filename”?
In the C and C++ programming languages, what is the difference between using angle brackets and using quotes in an include statement, as follows?
#include <filename>
#include "filename"
249
votes
8answers
117k views
What's the best C++ JSON parser? [closed]
I've seen the C++ JSON links on the official JSON site and would like some feedback on which parser people prefer - for reliability, speed and ease of use.
245
votes
12answers
17k views
How many levels of pointers can we have?
How many pointers (*) are allowed in a single variable?
Let's consider the following example.
int a = 10;
int *p = &a;
Similarly we can have
int **q = &p;
int ***r = &q;
and so on.
...
244
votes
18answers
63k views
Why is “using namespace std;” considered bad practice?
I've been told by others on numerous occasions that my teacher was wrong in saying that we should have using namespace std; in our programs, and that std::cout and std::cin are more proper. However, ...
243
votes
4answers
16k 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 ...
240
votes
17answers
105k views
Can a local variable's memory be accessed outside its scope? [duplicate]
Possible Duplicate:
Returning the address of local or temporary variable
I have the following code.
int * foo()
{
int a = 5;
return &a;
}
int main()
{
int* p = foo();
...
236
votes
4answers
30k views
how to achieve 4 flops per cycle
How can the theoretical peak performance of 4 floating point operations (double precision) per cycle be achieved on a modern x86-64 Intel cpu?
As far as I understand it take 3 cycles for an sse add ...
235
votes
19answers
12k views
What's the purpose of using { … } for a single line?
I'm reading some lecture notes of my C++ lecturer and he wrote the following:
Use Indentation // OK
Never rely on operator precedence - Always use parentheses // OK
Always use a { } block ...
224
votes
22answers
129k views
What is the equivalent of the C++ Pair<L,R> in Java?
Is there a good reason why there is no Pair in Java? What would be the equivalent of this C++ construct? I would rather avoid reimplementing my own.
It seems that 1.6 is providing something similar ...
224
votes
4answers
54k 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?
220
votes
19answers
20k views
Is C++ context-free or context-sensitive?
I often hear claims that C++ is a context-sensitive language. Take the following example:
a b(c);
Is this a variable definition or a function declaration? That depends on the meaning of the symbol ...
219
votes
8answers
52k views
What is a smart pointer and when should I use one?
What is a smart pointer and when should I use one?
216
votes
16answers
21k views
How can I know which parts in the code are never used?
I have legacy C++ code that I'm supposed to remove unused code from. The problem is that the code base is large.
How can I find out which code is never called/never used?
212
votes
12answers
7k views
Why should I not wrap every block in “try”-“catch”?
I have always been of the belief that if a method can throw an exception then it is reckless not to protect this call with a meaningful try block.
I just posted 'You should ALWAYS wrap calls that can ...
209
votes
14answers
9k views
int a[] = {1,2,}; Weird comma allowed. Any particular reason?
Maybe I am not from this planet, but it would seem to me that the following should be a syntax error:
int a[] = {1,2,}; //extra comma in the end
But it's not. I was surprised when this code ...
209
votes
9answers
19k views
Do-While and if-else statements in C/C++ macros
In many C/C++ macros I'm seeing the code of the macro wrapped in what seems like a meaningless do while loop. Here are examples.
#define FOO(X) do { f(X); g(X); } while (0)
#define FOO(X) if (1) { ...
206
votes
5answers
6k views
Is 0 a decimal literal or an octal literal?
Zero is always zero, so it doesn't matter. But in a recent discussion with my friend he said that octal literals are almost unused today. Then it dawned upon me that actually almost all integer ...
