Aracılığıyla paylaş


is_reference Sınıfı

Tür bir başvuruysa sınar.

Sözdizimi

template <class Ty>
struct is_reference;

Parametreler

Ty
Sorgulanacak tür.

Açıklamalar

Tür koşulunun bir örneği, Ty türü bir nesneye veya işleve başvuruysa true değerini tutar, aksi takdirde false değerini tutar.

Örnek

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

struct trivial
    {
    int val;
    };

int main()
    {
    std::cout << "is_reference<trivial> == " << std::boolalpha
        << std::is_reference<trivial>::value << std::endl;
    std::cout << "is_reference<trivial&> == " << std::boolalpha
        << std::is_reference<trivial&>::value << std::endl;
    std::cout << "is_reference<int()> == " << std::boolalpha
        << std::is_reference<int()>::value << std::endl;
    std::cout << "is_reference<int(&)()> == " << std::boolalpha
        << std::is_reference<int(&)()>::value << std::endl;

    return (0);
    }
is_reference<trivial> == false
is_reference<trivial&> == true
is_reference<int()> == false
is_reference<int(&)()> == true

Gereksinimler

Üst Bilgi:<type_traits>

Ad alanı: std

Ayrıca bkz.

<type_traits>
is_pointer Sınıfı