通过模板判断Value是否为指针

有个参数,需要判断其Value是否为指针,如果是做相应的处理。

代码示例如下,后来发现is_pointer在std空间中。

#include 
#include
#include
template
struct is_pointer { static const bool value = false; };

template
struct is_pointer { static const bool value = true; };

template
void func(T& v) {
    std::cout << "is it a pointer? " << is_pointer::value << std::endl;
}
int main(int argc, char *argv[])
{
    __uint128_t x = 1111UL;
    printf("%llu\n", x);
    func(x);
    return 0;
}

  

转载于:https://www.cnblogs.com/westfly/p/6183381.html

你可能感兴趣的:(通过模板判断Value是否为指针)