3
template <typename T>
bool validate(const T& minimum, const T& maximum, const T& testValue) {
    return testValue >= minimum && testValue <= maximum;
}

template <> 
bool validate<const char&>(
    const char& minimum,
    const char& maximum,
    const char& testValue)
{
    char a = toupper(testValue);
    char b = toupper(minimum);
    char c = toupper(maximum);
    return a >= b && a <= c;
}

这是函数模板,不知何故,main在调用函数时,即使参数为validate,它也从不使用第二个函数( for ) 。谁能看到我的问题在哪里?const char&char

4

1 回答 1

6

您专门针对的类型 -与您传​​递 a 时推断的const char&内容不匹配- 它推断为!Tcharchar

(模板类型参数只能在存在通用引用的情况下推导出引用)

所以,

template <> 
bool validate<char> ...

无论如何,你为什么不重载呢?

于 2016-07-28T17:44:19.170 回答