Difference between revisions of "CPlusPlus"
From Lost In Wonderlands
(→SmartPointers) |
(→Exceptions) |
||
Line 55: | Line 55: | ||
==== Exceptions ==== | ==== Exceptions ==== | ||
− | + | * [https://www.fluentcpp.com/2017/07/04/multiple-error-handling-with-the-optional-monad-in-c/ multiple-error-handling-with-the-optional-monad-in-c] | |
* Why doesn't C++ provide a "finally" construct? | * Why doesn't C++ provide a "finally" construct? | ||
** [https://stackoverflow.com/questions/161177/does-c-support-finally-blocks-and-whats-this-raii-i-keep-hearing-about, No, C++ does not support 'finally' blocks ] | ** [https://stackoverflow.com/questions/161177/does-c-support-finally-blocks-and-whats-this-raii-i-keep-hearing-about, No, C++ does not support 'finally' blocks ] |
Revision as of 11:56, 26 June 2019
Contents
- 1 C++ programming Language
- 1.1 See also
- 1.2 C++
- 1.2.1 C++ Topics
- 1.2.2 Boost
- 1.2.3 C++ API Design
- 1.2.4 C++ Evolutions
- 1.2.5 C++ Coding Styles
- 1.2.5.1 Iso C++ Coding Style
- 1.2.5.2 https://github.com/isocpp/CppCoreGuidelines Iso C++ Coding Style on Github ]
- 1.2.5.3 C++ Coding Style on Github
- 1.2.5.4 coding-standards
- 1.2.5.5 c++ coding styles by Bjarne and Herb
- 1.2.5.6 Mozilla C++ Coding Style
- 1.2.5.7 Google C++ Coding style
- 1.2.5.8 high-integrity-cpp-coding-standard
- 1.2.6 C++ Portability
- 1.2.7 C++ Testing
- 1.3 FAQ
- 1.4 Tools
- 1.5 blogs
- 1.6 source code
- 1.7 tutorials
- 1.8 Books
C++ programming Language
See also
C++
- http://www.cplusplus.com/
- https://en.wikipedia.org/wiki/C%2B%2B
- http://www.open-std.org/jtc1/sc22/wg21/
- https://isocpp.org/get-started
- C and C++ compatibility, https://en.wikipedia.org/wiki/Compatibility_of_C_and_C%2B%2B
C++ Builder
C++ Standard Library
C++ Topics
Fluent Cpp Topics
SmartPointers
- auto_ptr, deprecated since c++11, it was replaced by unique ptr
- smart-pointers-modern-cpp
- boost smart pointers
RAII, Resource Acquisition is initialization Pattern
Exceptions
- multiple-error-handling-with-the-optional-monad-in-c
- Why doesn't C++ provide a "finally" construct?
- cppreferences
- https://en.cppreference.com/w/cpp/language/exceptions
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-1
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-2
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-3
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-4
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-5
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-6
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-7
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-8
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-9
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-10
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-11
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-12
- https://en.cppreference.com/w/cpp/language/exceptions#cite_ref-13
- isocpp.org
- boost
- stdlib
- DrDobb's
C++ traits
C++ type Casting
- https://en.wikipedia.org/wiki/Type_conversion
- https://en.wikipedia.org/wiki/Static_cast
- https://en.wikipedia.org/wiki/Type_punning
- https://fr.wikipedia.org/wiki/Dynamic_cast
- https://openclassrooms.com/courses/c-les-conversions-de-types
- https://stackoverflow.com/questions/28002/regular-cast-vs-static-cast-vs-dynamic-cast
Qt Type Casting
Learning STL
Ranges in C++ and STL
- [https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/ moving-ranges-stl}
- the-difference-between-stdcopy_backward-and-stdcopy-with-reverse-iterators
- inserting-several-elements-into-an-stl-container
- how-to-split-a-string-in-c
Maker functions in STL
- make_ functiona re facility stl foos
- https://docs.microsoft.com/en-us/cpp/standard-library/memory-functions?view=vs-2019#make_unique
- make_unique
- make_shared
Boost
C++ API Design
Qt API Design
C++ Evolutions
Support in compilers
ISOCPP
C++ 03
C++ 11
C++ 14
C++ 17
- https://en.wikipedia.org/wiki/C%2B%2B17
- [ https://www.cppindetail.com c++ in details]
C++20
C++ Coding Styles
Iso C++ Coding Style
https://github.com/isocpp/CppCoreGuidelines Iso C++ Coding Style on Github ]
C++ Coding Style on Github
coding-standards
c++ coding styles by Bjarne and Herb
Mozilla C++ Coding Style
Google C++ Coding style
high-integrity-cpp-coding-standard
C++ Portability
Using_CXX_in_Mozilla_code
C++ Testing
- https://en.wikipedia.org/wiki/CppUnit
- https://sourceforge.net/projects/cppunit/
- https://freedesktop.org/wiki/Software/cppunit/
- https://freedesktop.org/wiki/Software/cppunit/
FAQ
Tools
Others
- C Reduce
compilers
IDE
- https://www.jetbrains.com/cpp/?gclid=CJblnPaN0dQCFcEp0wod50IDwA&gclsrc=aw.ds.ds&dclid=CIr4_faN0dQCFZc-GwodAhYCWg
- http://www.codeblocks.org
- https://www.kdevelop.org
- https://www.monodevelop.com
- https://visualstudio.microsoft.com/fr/
- https://developer.apple.com/xcode/
on line compilers
- C++ Shell, http://www.cpp.sh
blogs
- isocpp
- Meeting C++, a news site on C++ , new specifications
- cppReferences
- cpp optimizing with static analysis tools
- C++, Qt, OpenGL, CUDA
- cppcast john-regehr
- Simplify C++
- comp.lang.c++
- cpp_questions
- Vorbrodt's C++ Blog
- Scott Meyer blog
- 11 free resources for learning c++ programming
- philippegroarke solutions
- accu.org
- solarian programmers' blog
source code
Gang Of Four Patterns
Several implementation of Above design patterns in C++
- https://github.com/BartVandewoestyne/Design-Patterns-GoF
- https://github.com/zebmason/GoFRefactored/blob/master/README.md
- http://www.informit.com/articles/article.aspx?p=1404056
- https://www.infoq.com/presentations/gof-patterns-c-plus-plus-boost/
- http://www.c-jump.com/CIS75/Week11/
- http://www.c-jump.com/Download/Patterns/Prototype/html/
- https://github.com/wangqiang8511/C---Design-Patterns-Examples/
modern C++
- github search, https://github.com/search?q=modern+c%2B%2B
- JSON, https://github.com/nlohmann/json/releases/tag/v3.6.0
tutorials
- http://www.tutswing.com/cplusplus-home
- http://www.dreamincode.net/forums/forum/48-c-tutorials/
- https://cplusplus.awesome-programming.com/en/awesome/cplusplus-04/tutorial
awesome-programming.com
- https://cplusplus.awesome-programming.com/en/awesome/cplusplus-03/course
- https://cplusplus.awesome-programming.com/en/awesome/cplusplus-04/tutorial
- https://cplusplus.awesome-programming.com/en/awesome/cplusplus-02/community
- https://cplusplus.awesome-programming.com/en/awesome/cplusplus-05/youtube
Books
- Effective C++
- More Effective c++
- Effective Modern C++
- effective_cpp_in_an_embedded_environment
- Thinking in C++
- Exceptional C++
- More Exceptionnal C++
- Safe C++
- Modern C++
- Exploring c++11, https://books.google.pl/books?id=jZoQAwAAQBAJ&pg=PA592&lpg=PA592&dq=ICS+C%2B%2B&source=bl&ots=Y6wvPJAdLP&sig=yPgJS3xjnTZAGY7_0wwxFBAyrUI&hl=en&sa=X&ved=0ahUKEwjzjfaM_tDUAhUBYVAKHQkJBCsQ6AEIYjAJ#v=onepage&q=ICS%20C%2B%2B&f=false
- c++ crash course (no starch press)
- c++ concurrency in action-2nd-edition
- beginning c++17-5th-edition
- clean c++
- modern c programming with test driven development
- exploring c++
- options-and-derivatives-programming-in-c++