¡@

Home 

c++ Programming Glossary: sutter's

Is there a production ready lock-free queue or hash implementation in C++

http://stackoverflow.com/questions/1164023/is-there-a-production-ready-lock-free-queue-or-hash-implementation-in-c

this question The starting point would be either of Herb Sutter's DDJ articles for either a single producer and consumer or multiple..

Purpose of Trigraph sequences in C++?

http://stackoverflow.com/questions/1234582/purpose-of-trigraph-sequences-in-c

have me pulling my hair out take a look at Herb Sutter's GOTW #86 article . Addendum It looks like GCC will not process..

Most common reasons for unstable bugs in C++?

http://stackoverflow.com/questions/1346583/most-common-reasons-for-unstable-bugs-in-c

expert enough to offer solutions here but I think Herb Sutter's Effective Concurrency columns are a very worthwhile read on..

make_unique does not compile

http://stackoverflow.com/questions/13883824/make-unique-does-not-compile

of pseudo variadics . From this comment on Herb Sutter's blog http herbsutter.com gotw _102 #comment 6428 #include memory..

c++11 async continuations or attempt at .then() semantics

http://stackoverflow.com/questions/14200678/c11-async-continuations-or-attempt-at-then-semantics

at .then semantics The code below is based on Herb Sutter's ideas of an implementation of a .then type continuation. template..

How is std::string implemented?

http://stackoverflow.com/questions/1466073/how-is-stdstring-implemented

instead of dynamically allocating a buffer Also Herb Sutter's More Exceptional C has an appendix Appendix A Optimizations..

C++ interview preparation [closed]

http://stackoverflow.com/questions/1569778/c-interview-preparation

series Effective C More Effective C Effective STL Herb Sutter's Exceptional series Exceptional C More Exceptional C Exceptional..

What is “cache-friendly” code?

http://stackoverflow.com/questions/16699247/what-is-cache-friendly-code

into videos I strongly recommend to have a look at Herb Sutter's talk on machine architecture youtube specifically check 12 00..

Locks and Mutexes in C++ [closed]

http://stackoverflow.com/questions/1803887/locks-and-mutexes-in-c

you mentioned you prefer books to online tutorials Herb Sutter's Effective Concurrency column is definitely a must read. There..

C++ Error Handling — Good Sources of Example Code?

http://stackoverflow.com/questions/231128/c-error-handling-good-sources-of-example-code

c error handling share improve this question Herb Sutter's and Andrei Alexandrescu's book C Coding Standards comes with..

Can I use a binary literal in C or C++?

http://stackoverflow.com/questions/2611764/can-i-use-a-binary-literal-in-c-or-c

0012 dec 18 oct 000022 bin 0000000000010010 Also read Herb Sutter's The String Formatters of Manor Farm for an interesting discussion...

Where should non-member operator overloads be placed?

http://stackoverflow.com/questions/3623631/where-should-non-member-operator-overloads-be-placed

belongs in the same namespace as your class see also Herb Sutter's Namespaces and the Interface Principle . From the point of view..

Switching from Java to C++ - what's the easy way? [closed]

http://stackoverflow.com/questions/403431/switching-from-java-to-c-whats-the-easy-way

power of templates and will want to learn them again Read Sutter's books Exceptional C style for example Read Modern C Design book..

Why was argument dependent lookup invented?

http://stackoverflow.com/questions/4276772/why-was-argument-dependent-lookup-invented

they form part of the interface of X. Check out Herb Sutter's excellent Guru of the Week on the topic. share improve this..

What C++ Smart Pointer Implementations are available?

http://stackoverflow.com/questions/5026197/what-c-smart-pointer-implementations-are-available

my limited understanding and assumptions are based on Herb Sutter's Effective Use of auto_ptr and I do use it regularly although..

Function pointer pointing to a function that takes a function pointer

http://stackoverflow.com/questions/6128344/function-pointer-pointing-to-a-function-that-takes-a-function-pointer

here are some convenient implicit conversions as in Herb Sutter's GotW #57 struct Rec typedef void RecFun const Rec struct Rec..

Why VC++ Strings are not reference counted?

http://stackoverflow.com/questions/707014/why-vc-strings-are-not-reference-counted

a counter optimization in multi threaded code. See Herb Sutter's article Optimizations That Aren't In a Multithreaded World ...

Const reference to temporary

http://stackoverflow.com/questions/760578/const-reference-to-temporary

reference to temporary After reading this article on Herb Sutter's blog I experimented a bit and ran into something that puzzles..

Detailed explanation on how Koenig lookup works with namespaces and why its a good thing?

http://stackoverflow.com/questions/8111677/detailed-explanation-on-how-koenig-lookup-works-with-namespaces-and-why-its-a-go

researcher and programmer Andrew Koenig . Good Reads Herb Sutter's Name Lookup on GotW Standard C 03 3.4.2 Argument dependent name..

Check if a class has a member function of a given signature

http://stackoverflow.com/questions/87372/check-if-a-class-has-a-member-function-of-a-given-signature

www.gotw.ca gotw 071.htm but not the same in the item of Sutter's book he answered to the question that a class C MUST PROVIDE..