Difference between revisions of "CPlusPlus"

From Lost In Wonderlands
Jump to: navigation, search
(C++ Topics)
(Ranges in C++ and STL)
Line 110: Line 110:
 
* [https://www.fluentcpp.com/2017/03/28/inserting-several-elements-into-an-stl-container/ inserting-several-elements-into-an-stl-container]
 
* [https://www.fluentcpp.com/2017/03/28/inserting-several-elements-into-an-stl-container/ inserting-several-elements-into-an-stl-container]
 
*[https://www.fluentcpp.com/2017/04/21/how-to-split-a-string-in-c/ how-to-split-a-string-in-c]
 
*[https://www.fluentcpp.com/2017/04/21/how-to-split-a-string-in-c/ how-to-split-a-string-in-c]
 +
 +
==== Maker functions in STL ====
 +
 +
* make_ functiona re facility stl foos
 +
** [https://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search=make_ make_]
 +
* https://docs.microsoft.com/en-us/cpp/standard-library/memory-functions?view=vs-2019#make_unique
 +
* [https://en.cppreference.com/w/cpp/memory/unique_ptr/make_unique make_unique]
 +
* [https://en.cppreference.com/w/cpp/memory/shared_ptr/make_shared make_shared]
  
 
=== Boost ===
 
=== Boost ===

Revision as of 14:51, 25 June 2019

C++ programming Language

See also

C++



C++ Builder

C++ Standard Library

C++ Topics

Fluent Cpp Topics

SmartPointers



RAII, Resource Acquisition is initialization Pattern

Exceptions

C++ traits

C++ type Casting

Qt Type Casting

Learning STL

Ranges in C++ and STL

Maker functions in 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