std::any::has_value
来自 cppreference.com
bool has_value() const noexcept; |
(自 C++17 起) | |
检查对象是否包含值。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
true 当且仅当实例包含值时。
[编辑] 示例
运行此代码
#include <any> #include <cassert> #include <string> int main() { std::any a0; assert(a0.has_value() == false); std::any a1 = 42; assert(a1.has_value() == true); assert(std::any_cast<int>(a1) == 42); a1.reset(); assert(a1.has_value() == false); auto a2 = std::make_any<std::string>("Andromeda"); assert(a2.has_value() == true); assert(std::any_cast<std::string&>(a2) == "Andromeda"); a2.reset(); assert(a2.has_value() == false); }
[编辑] 另请参见
销毁包含的对象 (公有成员函数) |