다음을 통해 공유


is_fundamental 클래스

형식이 void 또는 산술형인지 테스트합니다.

구문

template <class Ty>
struct is_fundamental;

매개 변수

Ty
형식이 쿼리입니다.

설명

형식 조건자의 인스턴스는 Ty 형식이 기본 형식, 즉 void정수 계열 형식, 부동 소수점 형식 또는 cv-qualified 그 중 하나의 형식인 경우 true이고, 그렇지 않으면 false입니다.

예시

// std__type_traits__is_fundamental.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>

struct trivial
    {
    int val;
    };

int main()
    {
    std::cout << "is_fundamental<trivial> == " << std::boolalpha
        << std::is_fundamental<trivial>::value << std::endl;
    std::cout << "is_fundamental<int> == " << std::boolalpha
        << std::is_fundamental<int>::value << std::endl;
    std::cout << "is_fundamental<const float> == " << std::boolalpha
        << std::is_fundamental<const float>::value << std::endl;
    std::cout << "is_fundamental<void> == " << std::boolalpha
        << std::is_fundamental<void>::value << std::endl;

    return (0);
    }
is_fundamental<trivial> == false
is_fundamental<int> == true
is_fundamental<const float> == true
is_fundamental<void> == true

요구 사항

헤더:<type_traits>

네임스페이스: std

참고 항목

<type_traits>
is_compound 클래스