C++/模板变量的典型应用(STL)源码剖析
C++ std::is_same_v的实现 声明:
template<class _Ty, class _Uty> constexpr bool is_same_v = false
特化版本后,即是同一个类型的实现(同一个变量的版本):
template<class _Ty> constexpr bool is_same_v<_Ty,_Ty> = true
例如:
std::is_same_v<int,double> : 走上面的流程即两个模板参数,结果是false
std::is_same_v<int,int> : 走下面偏特化版本流程,结果是true