gpt4 book ai didi

c++ - 是否使用空 std::optional UB?

转载 作者:行者123 更新时间:2023-12-03 06:52:39 26 4
gpt4 key购买 nike

以下代码:

    std::optional<std::string> so;
std::cout << so->size() << std::endl;
std::cout << so.has_value();
输出:
   0
0
我的问题是打电话是否安全: so->size()在一个空的可选。我使用了 clang sanitizer ,但它没有在上面的代码中报告任何 UB。

最佳答案

使用 operator->在空 std::optional是未定义的行为,不管是什么类型 Tstd::optional<T> .
根据 std::optional<T>::operator-> 上的 cppreference :

The behavior is undefined if *this does not contain a value.

关于c++ - 是否使用空 std::optional<string> UB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64776223/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com