History of C++
From cppreference.com
Contents |
[edit] Early C++
- 1979: C with Classes first implemented
- New features: classes, member functions, derived classes, separate compilation, public and private access control, friends, type checking of function arguments, default arguments, inline functions, overloaded assignment operator, constructors, destructors, f() same as f(void), call-function and return-function (synchronization features, not in C++)
- Libraries: the concurrent task library (not in C++)
- 1982: C with Classes reference manual published
- 1984: C84 implemented, reference manual published
- 1985: Cfront 1.0
- New features: virtual functions, function and operator overloading, references, new and delete operators, the keyword
const
, scope resolution operator - Library additions: complex number,
string
(AT&T version), I/O stream
- 1985: The C++ Programming Language, 1st edition
- 1986: The "whatis?" paper documenting the remaining design goals, including multiple inheritance, exception handling, and templates.
- 1987: C++ support in GCC 1.15.3
- 1989: Cfront 2.0
- New features: multiple inheritance, pointers to members, protected access, type-safe linkage, abstract classes, static and const-qualified member functions, class-specific new and delete
- Library additions: I/O manipulators
- 1990: The Annotated C++ Reference Manual
This book described the language as designed, including some features that were not yet implemented. It served as the de-facto standard until the ISO.
- New features: namespaces, exception handling, nested classes, templates
- 1991: Cfront 3.0
- 1991: The C++ Programming Language, 2nd edition
[edit] Standard C++
- 1990: ANSI C++ Committee founded
- 1991: ISO C++ Committee founded
- 1992: STL implemented in C++
[edit] C++98/03 period
- 1998: C++98 (ISO/IEC 14882:1998)
- New features: RTTI (
dynamic_cast
,typeid
), covariant return types, cast operators,mutable
,bool
, declarations in conditions, template instantiations, member templates, export - Library additions: locales, bitset, valarray, auto_ptr, templatized string, I/O streams, and complex numbers.
- Based on STL: containers, algorithms, iterators, function objects
- 1998: The C++ Programming Language, 3rd edition
- 1999: Boost founded by the committee members to produce new high-quality candidate libraries for the standard.
- 2003: C++03 (ISO/IEC 14882:2003)
This was a minor revision, intended to be little more than a technical corrigendum. This revision introduces the definition of value initialization.