std::expected
和std::optional差不多,但是std::optional只能表示有正常的值或者为std::nullopt,即空值。而std::expected则可以表示一个期望的值和一个错误的值,相当于两个成员的std::variant,但是在接口上更方便使用。可以把它当作新的一种的错误处理方式。
基本使用
有两个模板参数,第一个表示为期望的值,第二个表示错误的值。
std::expected<T,E>
如果是期望的值,则有一个隐式的转换
std::expected<int, std::string> e = 42;
如果是异常值,则要通过std::unexpected()来初始化。
std::expected<int, std::string> e = std::unexpected("Error");
和std::optional一样有指针语义,可以解引用。解引用前必须检查,否则为UB!!!
std::expected<int, std::string> e = 42;
if (e)
std::cout << *e << "\n"; // 打印 42
std::expected<T,E>::value()值不存在时会抛出一个异常,一定程度上更安全。文章来源:https://www.toymoban.com/news/detail-690874.html
std::expected<int, std::string> e = 42;
if (e.has_value())
std::cout << e.value() << "\n"; // 打印 42
表示错误,如果没有错误使用的话为UB!!!文章来源地址https://www.toymoban.com/news/detail-690874.html
std::expected<int, std::string> e = std::unexpected<std::string>("Error");
if (!e.has_value())
std::cout << e.error() << "\n"; // 打印 `Error`
到了这里,关于c++ expected的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!