variant의 첫 번째 타입으로 monostate를 주면 variant 자체에 디폴트 값이 생겨서 디폴트 값을 부여하지 않아도 된다.
예제:
#include <cassert>
#include <iostream>
#include <variant>
struct S
{
S(int i) : i(i) {}
int i;
};
int main()
{
// Without the monostate type this declaration will fail.
// This is because S is not default-constructible.
std::variant<std::monostate, S> var;
assert(var.index() == 0);
try
{
std::get<S>(var); // throws! We need to assign a value
}
catch(const std::bad_variant_access& e)
{
std::cout << e.what() << '\n';
}
var = 42;
std::cout << "std::get: " << std::get<S>(var).i << '\n'
<< "std::hash: " << std::hex << std::showbase
<< std::hash<std::monostate>{}(std::monostate{}) << '\n';
}
출처: std::monostate - cppreference.com
'Programming' 카테고리의 다른 글
Java, C# Converter (0) | 2023.09.17 |
---|---|
[C#] I wish I knew : RealProxy (0) | 2023.09.13 |
Arc tutorial (0) | 2023.09.07 |
Continuations in Common Lisp. An introductory guide, using the… | by Ashok Khanna | Medium (0) | 2023.09.07 |
[c++]리스트 sort 하는 방법 (tistory.com) (0) | 2023.08.20 |