Difference between revisions of "CPlusPlus"

From Lost In Wonderlands
Jump to: navigation, search
(Tools)
(source code)
Line 179: Line 179:
  
 
== source code ==
 
== source code ==
 +
 +
=== Gang Of Four Patterns ===
 +
* https://en.wikipedia.org/wiki/Design_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++ ===
 
=== modern C++ ===
 
* github search, https://github.com/search?q=modern+c%2B%2B
 
* github search, https://github.com/search?q=modern+c%2B%2B

Revision as of 14:55, 14 June 2019

C++ programming Language

See also

C++



C++ Builder

C++ Standard Library

C++ Topics

Fluent Cpp Topics

Exceptions

C++ traits

C++ type Casting

Qt Type Casting

Learning STL

Ranges in C++ and STL

Boost


C++ API Design

Qt API Design

C++ Evolutions

Support in compilers

ISOCPP

C++ 03

C++ 11

C++ 14

C++ 17

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

CppUnit

Google Test

FAQ

Tools

Others

compilers

IDE

on line compilers

blogs

source code

Gang Of Four Patterns

Several implementation of Above design patterns in C++

modern C++

tutorials

awesome-programming.com

Books