Skip to content

C++ Programming Language Standard

C++ Programming Language Standard and standard library.

wiki#

C++

C++ (pronounced "C plus plus" and sometimes abbreviated as CPP) is a high-level, general-purpose programming language created by Danish computer scientist Bjarne Stroustrup. First released in 1985 as an extension of the C programming language, it has since expanded significantly over time; as of 1997, C++ has object-oriented, generic, and functional features, in addition to facilities for low-level memory manipulation for making things like microcomputers or to make operating systems like Linux or Windows. It is almost always implemented as a compiled language, and many vendors provide C++ compilers, including the Free Software Foundation, LLVM, Microsoft, Intel, Embarcadero, Oracle, and IBM.

C++ was designed with systems programming and embedded, resource-constrained software and large systems in mind, with performance, efficiency, and flexibility of use as its design highlights. C++ has also been found useful in many other contexts, with key strengths being software infrastructure and resource-constrained applications, including desktop applications, video games, servers (e.g., e-commerce, web search, or databases), and performance-critical applications (e.g., telephone switches or space probes).

isocpp#

C++ is standardized by the International Organization for Standardization (ISO), with the latest standard version ratified and published by ISO in December 2020 as ISO/IEC 14882:2020 (informally known as C++20). The C++ programming language was initially standardized in 1998 as ISO/IEC 14882:1998, which was then amended by the C++03, C++11, C++14, and C++17 standards. The current C++20 standard supersedes these with new features and an enlarged standard library. Before the initial standardization in 1998, C++ was developed by Stroustrup at Bell Labs since 1979 as an extension of the C language; he wanted an efficient and flexible language similar to C that also provided high-level features for program organization. Since 2012, C++ has been on a three-year release schedule with C++23 as the next planned standard.

News, Status & Discussion about Standard C++

The Standard : Standard C++

The C++ Standards Committee - ISOCPP

C++ Core Guidelines

Meeting C++

History#

D&E: The Design and Evolution of C++-1994
TC++PL: The_C++_Programming_Language(4e)-2013

  • Part I: Introductory Material | 1. Notes to the Reader | 1.4 History

Tour++: A Tour of C++(3e)-2022

  • 19.1 History

Current ISO C++ status: Recent milestones

  • C++98/03: Traditional C++
  • C++0x/C++11: Modern C++

Specifications#

C++98 - ISO/IEC 14882:1998
C++03 - ISO/IEC 14882:2003
C++11 - ISO/IEC 14882:2011
C++14 - ISO/IEC 14882:2014
C++17 - ISO/IEC 14882:2017
C++20 - ISO/IEC 14882:2020

open-std : C++ - Standards

features#

C++0x Concepts — Historical FAQs

C++11 Overview
C++11 Language Extensions — General Features, C++ FAQ

C++14 Overview
C++14 Language Extensions, C++ FAQ

Changes between C++14 and C++17
C++17 Features--Bartlomiej Filipek : Standard C++

All C++20 core language features with examples--Oleksandr Koval : Standard C++
20 Smaller yet Handy C++20 Features--Bartlomiej Filipek : Standard C++

refs: C++ compiler support

Standard Library#

C++ Standard Library

boost#

boost.org @github

Asio C++ Library @github

GNU C++#

The Open Group Unix System Interfaces: Detailed ToC

The GNU C++ Library
The GNU C++ Library Manual

ref books#

D&E: The Design and Evolution of C++-1994
TC++PL: The_C++_Programming_Language(4e)-2013
Tour++: A Tour of C++(3e)-2022

Programming_Principles-and-Practice-Using-C++(3e)-2024
C++-how-to-program(10e)-2017
C++-Primer(5e)-3p-2013

Effective-C++(3e)-2005
Effective-modern-C++-2015

Inside-the-C++-Object-Model(1996)-en

Essential-C++-1999 - cn - 2013 (豆瓣)

Thinking-in-C++(e2)-2000-V1
Thinking-in-C++(e1)-2003-V2
Thinking-in-C++-bound-cn-2011

Comments