C++ 20 Feature List Finalized
Written by Alex Denham   
Friday, 02 August 2019

The ISO C++ Committee has decided what features will be included in the next C++ standard, with many improvements and new features including modules, concepts and coroutines. C++ 20 is due to be published by February 2020.

This is the largest release of C++ since C++11, and the list of major new features is impressive:

  • modules
  • coroutines
  • concepts including in the standard library via ranges
  • <=> spaceship including in the standard library
  • broad use of normal C++ for direct compile-time programming, without resorting to template metaprogramming (see last trip reports)
  • ranges
  • calendars and time zones
  • text formatting
  • span

cplus

 

The inclusion of support for modules will do away with the need to use the current #include system, and will let C++ programmers divide code into logical parts in a way more similar to other languages. 

Coroutines are functions that can suspend execution to be resumed later. They're stackless and suspend execution by returning to the caller, meaning you can have sequential code that executes asynchronously.

Concepts are included in a library defining fundamental concepts that can be used to perform compile-time validation of template arguments. The concepts will also mean function dispatch can be performed based on properties of types. These concepts provide a foundation for equational reasoning in programs.

One major improvement that was due to be included but which has now been removed from the feature list is contracts. Contracts allow preconditions, postconditions, and assertions to be expressed in code using a uniform syntax, with options such as having different contract levels and custom violation handlers. However, the committee decided that as there are still 'lingering design disagreements and concerns', the inclusion of the feature has been deferred and a new study group for contracts has been created. 

There's an in-depth write-up of what has and hasn't made it into C++20 by members of the committee on Reddit.

cplus 

 

.

More Information

ISO C++ Organization

Related Articles

Bjarne Stroustrup Thinks He Has A Better Way To Do Generics

C++ Where Is It Heading? C++17

In Praise Of C++ Bjarne At ICPC

Why your next language better be C++ 

The Irrelevance of the New C++ Standard

Programming: Principles and Practice Using C++, 2nd Ed (book review)

 

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Action Figure Craze Overruns OpenAI
13/04/2025

If you're on social media, you'll probably have seen a lot of 'action figure' posts, where people show off images of themselves, their dog or their cat in the form of an action figure, complete with s [ ... ]



Be Ready For Google I/O 2025
28/04/2025

Google has shared the agenda for its annual developer conference. This year Google will live stream two days of sessions, starting with the Keynote at 10:00 AM PT on May 20th, followed by the Dev [ ... ]


More News

espbook

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Friday, 02 August 2019 )