Tagged Questions
C++ is a statically typed, free-form, compiled, multi-paradigm, general-purpose programming language widely deployed in both the enthusiast and professional community.
915
votes
24answers
84k views
What is the name of this operator: “-->”?
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:
...
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 ...
751
votes
16answers
97k 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 ...
414
votes
7answers
92k 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 ...
396
votes
34answers
107k views
Why is this program erroneously rejected by three C++ compilers? [closed]
I am having some difficulty compiling a C++ program that I've written.
This program is very simple and, to the best of my knowledge, conforms to all the rules set forth in the C++ Standard. I've ...
325
votes
107answers
153k 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++?
275
votes
8answers
17k 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 ...
259
votes
5answers
16k 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
...
254
votes
60answers
55k views
C++ Urban Myths [closed]
I'm starting to write an article on what I'm calling "C++ Urban Myths" - that is, ideas and conceptions about C++ that are common but have no actual roots in reality. Some that I've come up with so ...
240
votes
13answers
83k views
Can a local variable's memory be accessed outside its scope? [closed]
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();
...
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 ...
235
votes
27answers
25k views
Interview question: Check if one string is a rotation of other string [closed]
A friend of mine was asked the following question today at interview for the position of software developer:
Given two string s1 and s2 how will you check if s1 is a rotated version of s2 ?
Example: ...
226
votes
15answers
85k views
218
votes
18answers
80k views
What can I use to profile C++ code in Linux?
I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code? :)
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 ...
200
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 ...
192
votes
30answers
13k 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 ...
185
votes
53answers
25k views
C++ blogs that you regularly follow? [closed]
What are all the C++ blogs that you follow?
Please add one url for one posting.
179
votes
40answers
9k views
A function that returns only true
During a code review I performed today for my colleague, I noticed a function that was defined as returning a boolean value, but in practice it returned only true. In a case of failure, this function ...
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 ...
161
votes
35answers
13k views
What to do about a 11000 lines C++ source file?
So we have this huge (is 11000 lines huge?) mainmodule.cpp source file in our project and every time I have to touch it I cringe :-)
As this file is so central and large, it keeps accumulating more ...
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 ...
160
votes
73answers
20k views
What is the worst real-world macros/pre-processor abuse you've ever come across? [closed]
What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?
Please add a short snippet or story if it is really entertaining. The goal ...
153
votes
17answers
18k 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?
153
votes
10answers
5k 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 ...
152
votes
60answers
13k views
What is Boost missing?
After spending most of my waking time on Stack Overflow, for
better or for worse, I've come to notice how 99% of the C++
questions are answered with "use boost::wealreadysolvedyourproblem",
but ...
142
votes
14answers
5k 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 ...
140
votes
4answers
3k 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 ...
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 ...
137
votes
21answers
6k views
How to learn proper C++?
While reading a long series of really, really interesting threads, I've come to a realization: I don't think I really know C++. I know C, I know classes, I know inheritance, I know templates (& ...
135
votes
45answers
124k views
C++ IDE for Linux?
I want to expand my programming horizons to Linux. A good, dependable basic toolset is important, and what is more basic than an IDE?
I could find these SO topics:
Lightweight IDE for linux and
...
132
votes
15answers
50k 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 ...
129
votes
25answers
16k views
Learning game programming
Quick question: I've been in the web-dev world for several years now, I've wrapped my head around Java, Python, PHP, C# and Ruby- and currently make my living as a C#.NET programmer and I want to ...
126
votes
3answers
2k views
What do single quotes do in C++ when used on multiple characters?
I'm curious about this code:
cout << 'test'; // Note the single quotes.
gives me an output of 1952805748.
My question: Is the output an address in memory or something?
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 ...
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 ...
119
votes
22answers
25k views
C++ Which is faster: Stack allocation or Heap allocation
This question may sound fairly elementary, but this is a debate I had with another developer I work with.
I was taking care to stack allocate things where I could, instead of heap allocating them. He ...
119
votes
31answers
39k views
C++ performance vs. Java/C#
My understanding is that C/C++ produces native code to run on a particular machine architecture. Conversely, languages like Java and C# run on top of a virtual machine which abstracts away the native ...
119
votes
12answers
26k views
What open source C++ static analysis tools are available?
Java has some very good open source static analysis tools such as FindBugs, Checkstyle and PMD. Those tools are easy to use, very helpful, runs on multiple operating systems and free.
Commercial C++ ...
118
votes
3answers
2k views
Return type of '?:' (ternary conditional operator)
Why does the first return a reference?
int x = 1;
int y = 2;
(x > y ? x : y) = 100;
While the second does not?
int x = 1;
long y = 2;
(x > y ? x : y) = 100;
Actually, the second did not ...
114
votes
64answers
30k views
Hidden Features of C++? [closed]
No C++ love when it comes to the "hidden features of" line of questions? Figured I would throw it out there. What are some of the hidden features of C++?
113
votes
14answers
7k views
What's the rationale for null terminated strings?
As much as I love C and C++, I can't help but scratch my head at the choice of null terminated strings:
Length prefixed (i.e. Pascal) strings existed before C
Length prefixed strings make several ...
112
votes
38answers
12k views
What is your most useful C/C++ utility? [closed]
It seems that every project has a "utility" module with various code snippets used throughout other files and which doesn't fit any particular pattern.
What utility classes, functions, and macros do ...
112
votes
8answers
51k views
What's the best C++ JSON parser?
I've seen the C++ JSON links on www.json.org but would like some feedback on which parser people prefer - for reliability, speed and ease of use.
Thanks, Sam
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?
110
votes
9answers
76k 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?
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, ...