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:
The inclusion of support for modules will do away with the need to use the current 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.
. More InformationRelated ArticlesBjarne 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.
Comments
or email your comment to: comments@i-programmer.info |
Last Updated ( Friday, 02 August 2019 ) |