3
주어진 std :: variant 유형을 주어진 기준으로 나눕니다.
지정된 변형 유형별 방법 using V = std::variant<bool, char, std::string, int, float, double, std::vector<int>>; 두 가지 변형 유형을 선언하십시오. using V1 = std::variant<bool, char, int, float, double>; using V2 = std::variant<std::string, std::vector<int>>; 여기서 V1모든 연산 종류를 포함 V하고 V2있는 모든 종류의 비 산술 포함 V? V 템플리트 클래스의 매개 변수 …
20
c++
c++17
std-variant