From e5c8c8ba948335d3c76f10bf0b6b9f9a33424356 Mon Sep 17 00:00:00 2001 From: mrgloom Date: Thu, 29 Jun 2017 14:29:58 +0300 Subject: [PATCH] Update README.md --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 951ac87..127a239 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,24 @@ -C++ tips, tricks, idioms, etc. in stackoverflow questions. +C++ tips, tricks, question, idioms, etc. + + +C++ FAQS +~~~ +Herb Sutter gotw +https://herbsutter.com/gotw/ + +Bjarne Stroustrup +http://www.stroustrup.com/bs_faq.html +http://www.stroustrup.com/C++11FAQ.html + +https://isocpp.org/faq + +~~~ + +Books +~~~ +http://www.aristeia.com/books.html +~~~ ~~~ private constructor @@ -22,6 +41,9 @@ http://stackoverflow.com/questions/4352169/default-constructor-for-an-inherited- private destructor http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private + +operator overloading outside class +https://stackoverflow.com/questions/2425906/operator-overloading-outside-class ~~~ #Patterns