¡@

Home 

c++ Programming Glossary: sutter

Are the days of passing const std::string & as a parameter over?

http://stackoverflow.com/questions/10231349/are-the-days-of-passing-const-stdstring-as-a-parameter-over

string as a parameter over I heard a recent talk by Herb Sutter who suggested that the reasons to pass std vector and std string..

Namespace + functions versus static methods on a class

http://stackoverflow.com/questions/1434937/namespace-functions-versus-static-methods-on-a-class

online reference to this principle in an article from Herb Sutter http www.gotw.ca gotw 084.htm The important thing to know is..

When should functions be member functions?

http://stackoverflow.com/questions/1638394/when-should-functions-be-member-functions

How Non Member Functions Improve Encapsulation Herb Sutter and Jim Hyslop also talk about this citing Meyer's article in.. non member non friend functions to member functions and Sutter Alexandrescu's C Coding Standards 44 Prefer writing nonmember..

What is “cache-friendly” code?

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

main methods to reduce the impact of latency cfr. the Herb Sutter talk I linked at the start . To paraphrase Herb Sutter cfr... Sutter talk I linked at the start . To paraphrase Herb Sutter cfr. links below increasing bandwidth is easy but we can't buy.. into videos I strongly recommend to have a look at Herb Sutter's talk on machine architecture youtube specifically check 12..

Does “&s[0]” point to contiguous characters in a std::string?

http://stackoverflow.com/questions/1986966/does-s0-point-to-contiguous-characters-in-a-stdstring

standard forces it to be. In practice neither I nor Herb Sutter know of an implementation that does not use contiguous storage...

catch exception by pointer in C++

http://stackoverflow.com/questions/2023032/catch-exception-by-pointer-in-c

use a smart pointer such as shared_ptr . Anyway Herb Sutter and Alexei Alexandrescu explain that really well in their C..

How to learn proper C++? [closed]

http://stackoverflow.com/questions/2963019/how-to-learn-proper-c

C Effective STL A book C Coding Standards by Herb Sutter also comes recommended with a reasonable justification . Along..

What C++ pitfalls should I avoid? [closed]

http://stackoverflow.com/questions/30373/what-c-pitfalls-should-i-avoid

Meyers More Effective C Scott Meyers C Coding Standards Sutter Alexandrescu C FAQs Cline Reading these books has helped me..

When to use virtual destructors?

http://stackoverflow.com/questions/461203/when-to-use-virtual-destructors

Multithreading reference?

http://stackoverflow.com/questions/601558/multithreading-reference

using Condition Variables Threading Building Blocks.org Sutter ™s Mill Effective Concurrency Understanding Parallel Performance.. Effective Concurrency Understanding Parallel Performance Sutter ™s Mill Effective Concurrency Use Threads Correctly Isolation..

Will std::string always be null-terminated in C++11?

http://stackoverflow.com/questions/6077189/will-stdstring-always-be-null-terminated-in-c11

null terminated in C 11 In a 2008 post on his site Herb Sutter states the following There is an active proposal to tighten..

C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?

http://stackoverflow.com/questions/6319146/c11-introduced-a-standardized-memory-model-what-does-it-mean-and-how-is-it-g

that mean And how is it going to affect C programming Herb Sutter says here that The memory model means that C code now has a.. following assumptions people are going to make in the code Sutter said. Well I can memorize this and similar paragraphs available..

make_unique and perfect forwarding

http://stackoverflow.com/questions/7038357/make-unique-and-perfect-forwarding

perfect forwarding share improve this question Herb Sutter chair of the C standardization committee writes on his blog..

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.. If you read the link to the gotw site old site of Herb Sutter you'll discover that your solution is both intrusive and I don't..