C++ 개념: 기본 타입(fundamental types) 기본 타입(fundamental types) 1. 설명 정수, 혹은 실수이거나, void 타입, nullptr의 타입을 말합니다. std::nullptr_t 를 제외한 포인터 타입은 기본 타입이 아닙니다. std::is_fundamental 을 이용하여 해당 여부를 확인할 수 있습니다. 2. 예제 #include #include class A{}; int main(){ std::cout C++/개념(Concept) 2020.11.11