我有以下模板:
template<class T>
void fn(T t){ }
我想覆盖其可以转换为std::string
的任何内容的行为。
指定显式模板特化和非模板函数重载,参数为std::string
仅适用于传入std::string
而不是其他函数的调用,因为它似乎匹配在尝试参数转换之前将它们添加到模板中。
有没有办法实现我想要的行为?
答案 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);
}
当然,你可以手动实现它,如果你没有C ++ 11,或者使用boost。