Difference between revisions of "CPlusPlus"

From Lost In Wonderlands
Jump to: navigation, search
(Exceptions)
(nge based statement for loops])
Line 34: Line 34:
 
* [https://docs.microsoft.com/en-us/cpp/cpp/welcome-back-to-cpp-modern-cpp?view=vs-2019$ auto in modern C++]
 
* [https://docs.microsoft.com/en-us/cpp/cpp/welcome-back-to-cpp-modern-cpp?view=vs-2019$ auto in modern C++]
 
* [https://stackoverflow.com/questions/16949016/how-to-declare-array-with-auto  how-to-declare-array-with-auto]
 
* [https://stackoverflow.com/questions/16949016/how-to-declare-array-with-auto  how-to-declare-array-with-auto]
 +
 +
==== Ranges ====
 +
* [https://docs.microsoft.com/en-us/cpp/cpp/range-based-for-statement-cpp?view=vs-2019 Range-based for Statement (C++)]
 +
* [http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0184r0.html range based statement for loops]
 +
* [https://github.com/ericniebler/range-v3 a range library v3]
  
 
==== SmartPointers ====
 
==== SmartPointers ====

Revision as of 17:18, 3 July 2019

C++ programming Language

See also

C++



C++ Builder

C++ Standard Library

C++ Topics

Fluent Cpp Topics

auto

Ranges

SmartPointers




RAII, Resource Acquisition is initialization Pattern

Exceptions

curried Objects

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