模板编程之std::is_same和std::decay

std::is_same判断两种类型是否相同,相同返回true,不同返回false

std::is_same::value结果为true
std::is_same::value结果为false

std::decay则是去掉类型修饰符,如const、& 等...

两者结合则为

template
bool checkType_Int(T value) {
  return std::is_same::type,int>::value;
}

参考来自https://blog.csdn.net/tecsai/article/details/76610240

你可能感兴趣的:(模板编程之std::is_same和std::decay)