«std-variant» 태그된 질문

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 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.