本文介绍了如何检查两个模板参数是否完全相同?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何修改以下函数模板,使其返回42如果模板参数 T U 是完全相同的类型吗?

How do I modify the following function template so that it returns 42 if template parameters T and U are exactly the same type?

template<typename T,typename U>
int Foo()
{
  return 0;
}


推荐答案

http://en.cppreference.com/w/cpp/types/is_same> std :: is_same 可以提供所需的行为:

Using std::is_same can provide the desired behaviour:

#include <type_traits>

template<typename T,typename U>
int Foo()
{
    return std::is_same<T, U>::value ? 42 : 0;
}

这篇关于如何检查两个模板参数是否完全相同?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 11:22
查看更多