所有字符串类型的重载模板化函数

时间:2013-07-18 07:19:16

标签: c++ template-specialization overloading

我有以下模板:

template<class T>
void fn(T t){ }

我想覆盖其可以转换为std::string的任何内容的行为。

指定显式模板特化和非模板函数重载,参数为std::string仅适用于传入std::string而不是其他函数的调用,因为它似乎匹配在尝试参数转换之前将它们添加到模板中。

有没有办法实现我想要的行为?

1 个答案:

答案 0 :(得分:9)

像这样的案例可以帮助你解决C ++ 11

#include <type_traits>
#include <string>
#include <iostream>

template<class T>
typename std::enable_if<!std::is_convertible<T, std::string>::value, void>::type
fn(T t)
{
   std::cout << "base" << std::endl;
}

template<class T>
typename std::enable_if<std::is_convertible<T, std::string>::value, void>::type
fn(T t) 
{
   std::cout << "string" << std::endl;
}

int main()
{
   fn("hello");
   fn(std::string("new"));
   fn(1);
}

live example

当然,你可以手动实现它,如果你没有C ++ 11,或者使用boost。