简体   繁体   中英

Implementation status of std::optional in g++/libstdc++?

As I am working on a C++ library that will be released publicly around 2014, I currently have design choices to make. One of the very useful tool that will be released with C++14 is std::optional . I would like to know with what version of g++/libstdc++ I can expect to have it using -std=c++1y .

Update (Oct 2016): std::optional was not in the final C++14 standard, so it is never available with -std=c++1y . Instead GCC 4.9 includes std::experimental::optional which is avilable with -std=c++1y .

GCC 7 will include std::optional with -std=c++1z ie C++17.

Original answer (Jun 2013):

It's currently unimplemented, see http://gcc.gnu.org/ml/libstdc++/2013-06/msg00032.html for the status of C++14 features in GCC's trunk.

When it gets implemented depends on when someone volunteers to do the work, so is impossible to predict.

I would expect it will be done for GCC 4.9, which should be released shortly before the C++14 standard, but there are no guarantees. It is unlikely to get added to GCC 4.8 though, as that's already released and unlike GCC 4.9 (ie the GCC subversion trunk) the __cplusplus macro has the same value for -std=c++11 and -std=c++1y so for GCC 4.8 there's no way to selectively enable features for -std=c++1y only.

As per their libstdc++ status page GCC 7.1 is the first version to have std::optional without being hidden in std::experimental and it supports the __has_include(<optional>) feature test. The feature test __cpp_lib_optional >= 201603 was added in GCC 7.3.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM