Tagged Questions

Related to Herb Sutter's "Guru of the Week" C++ programming challenges.

learn more… | top users | synonyms

9
votes
2answers
243 views

Does the GotW #101 “solution” actually solve anything?

First read Herb's Sutters GotW posts concerning pimpl in C++11: GotW #100: Compilation Firewalls (Difficulty: 6/10) GotW #101: Compilation Firewalls, Part 2 (Difficulty: 8/10) I'm having some ...
6
votes
4answers
150 views

A example in Gotw 67

There is a example in http://www.gotw.ca/gotw/067.htm int main() { double x = 1e8; //float x = 1e8; while( x > 0 ) { --x; } } When you change the double to float, it's a infinite ...
3
votes
3answers
177 views

Why not resize and clear works in GotW 54?

Referring to article Gotw 54 by HerbSutter, he explains about The Right Way To "Shrink-To-Fit" a vector or deque and The Right Way to Completely Clear a vector or deque Can we just use ...
1
vote
2answers
62 views

gotw 80 syntax - initialisation in parameter list

Gotw 80 includes the following example: // Example 1 // #include <string> using namespace std; class A { public: A( const string& s ) { /* ... */ } string f() { ...