¡@

Home 

c++ Programming Glossary: alexandrescu

The simplest and neatest c++11 ScopeGuard

http://stackoverflow.com/questions/10270328/the-simplest-and-neatest-c11-scopeguard

I'm attempting to write a simple ScopeGuard based on Alexandrescu concepts but with c 11 idioms. namespace RAII template typename..

Best introduction to C++ template metaprogramming?

http://stackoverflow.com/questions/112277/best-introduction-to-c-template-metaprogramming

for C programming in general is Modern C Design by Andrei Alexandrescu ISBN 13 9780201704310. This book mixes a bit of metaprogramming..

Class design vs. IDE: Are nonmember nonfriend functions really worth it?

http://stackoverflow.com/questions/135634/class-design-vs-ide-are-nonmember-nonfriend-functions-really-worth-it

Prefer writing nonmember nonfriend functions Sutter and Alexandrescu recommend that only functions that really need access to the.. question I'm going to have to disagree with Sutter and Alexandrescu on this one. I think if the behavior of function foo falls within..

C: Good Habits re: Transitioning to C++

http://stackoverflow.com/questions/1420685/c-good-habits-re-transitioning-to-c

Even if we ignore Stroustrup names like Meyers Abrahams Alexandrescu Sutter etc. regularly crop up alongside new ideas. Despite or..

How to make generic computations over heterogeneous argument packs of a variadic template function?

http://stackoverflow.com/questions/14261183/how-to-make-generic-computations-over-heterogeneous-argument-packs-of-a-variadic

fashion and so on. After watching this lecture by Andrei Alexandrescu from C and Beyond 2012 on the desirability of static if into..

Existing Standard Style and Coding standard documents

http://stackoverflow.com/questions/145570/existing-standard-style-and-coding-standard-documents

an upcoming C project. C Coding Standards by Sutter and Alexandrescu JSF Air Vehicle C coding standards The Elements of C Style Effective..

When can typeid return different type_info instances for same type?

http://stackoverflow.com/questions/1819114/when-can-typeid-return-different-type-info-instances-for-same-type

return different type_info instances for same type Andrei Alexandrescu writes in Modern C Design The objects returned by typeid have..

catch exception by pointer in C++

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

pointer such as shared_ptr . Anyway Herb Sutter and Alexei Alexandrescu explain that really well in their C Coding Standards book which..

Open source examples of well designed applications [closed]

http://stackoverflow.com/questions/234276/open-source-examples-of-well-designed-applications

C library projects in the world. Herb Sutter and Andrei Alexandrescu C Coding Standards Item 55 Familiarize yourself with Boost...

May volatile be in user defined types to help writing thread-safe code

http://stackoverflow.com/questions/2491495/may-volatile-be-in-user-defined-types-to-help-writing-thread-safe-code

not to multithreading. On the other hand this article by Alexandrescu uses the volatile keyword not as a runtime feature but rather.. volatile that allows me to block member function calls and Alexandrescu is using it to trick the compiler into failing to compile thread..

Singleton pattern in C++

http://stackoverflow.com/questions/2496918/singleton-pattern-in-c

share improve this question You should probably read up Alexandrescu's book. Regarding the local static I haven't use Visual Studio.. won't live for long though since I am depiling my stack. Alexandrescu called it the Phoenix Singleton as it resurrects from its ashes..

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

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

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

Passing Variable Number of Arguments with different type - C++

http://stackoverflow.com/questions/3555583/passing-variable-number-of-arguments-with-different-type-c

Guidelines And Best Practices by Herb Sutter and Andrei Alexandrescu chapter 98 Don't use varargs ellipsis I deeply subscribe to..

When to use volatile with multi threading?

http://stackoverflow.com/questions/4557979/when-to-use-volatile-with-multi-threading

resource in a non protected way. This use is discussed by Alexandrescu in this article . However this is basically using the C type..

Does ScopeGuard use really lead to better code?

http://stackoverflow.com/questions/48647/does-scopeguard-use-really-lead-to-better-code

better code I came across this article written by Andrei Alexandrescu and Petru Marginean many years ago which presents and discusses..

What is the C++ iostream endl fiasco?

http://stackoverflow.com/questions/5492380/what-is-the-c-iostream-endl-fiasco

endl fiasco I was listening to a google talk by Andrei Alexandrescu on the D programming language when he threw out a one liner..

C++ iterators considered harmful?

http://stackoverflow.com/questions/838721/c-iterators-considered-harmful

At the Boost C Libraries library conference today Andrei Alexandrescu author of the book Modern C Design and the Loki C library spoke..