一、Qt中的QVariant
二、C++标准库中的std::variant(C++17)
三、C++标准库中的std::any(C++17)
四、C++标准库中的std::optional(C++17)
#include <iostream>
#include <optional>
#include <string>
// convert string to int if possible:
std::optional<int> asInt(const std::string& s)
{
try
{
return std::stoi(s);
}
catch (...)
{
return std::nullopt;
}
}
int main()
{
for (auto s : { "42", " 077", "hello", "0x33" })
{
// convert s to int and use the result if possible:
std::optional<int> oi = asInt(s);
if (oi) {
std::cout << "convert '" << s << "' to int: " << *oi << "
";
}
else {
std::cout << "can't convert '" << s << "' to int
";
}
}
}
std::pair<T,bool>
和std::option
的联系