// problem.cpp:
#include <string>
template<typename T> void func(const T & v);
int main() {
int i;
float f;
char * cp;
char ca[4];
func(i);
func(f);
func(cp);
func(std::string("std::string"));
func(ca);
func("string_literal");
return 0;
}
// problem2.cpp
#include <string>
template<typename T> void func(const T & v);
// undefined reference to `void func<int>(int const&)'
template<> void func<int>(const int & v) { }
// undefined reference to `void func<float>(float const&)'
template<> void func<float>(const float & v) { }
// undefined reference to `void func<char*>(char* const&)'
template<> void func<char *>(char * const & v) { }
// void func<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
template<> void func<std::string>(std::string const & v) { }
// undefined reference to `void func<char [4]>(char const (&) [4])'
// ???
// undefined reference to `void func<char [15]>(char const (&) [15])'
// ???
找到了两个解决方案:
a)在问题2.cpp中:
template<> void func<char[4]>(const char (&v)[4]) { }
template<> void func<char[15]>(const char (&v)[15]) { }
b)在problem.cpp中:
template<typename T, unsigned N> void func(const T (&v)[N]) { func(v+0); }
and then in problem2.cpp, add the newly missing
template<> void func<const char *>(const char * const & v) { }
抱歉,阿卡帕,不得不再次编辑以澄清它们是两个独立的解决方案......
akappa:我向这个问题添加内容的唯一方法是编辑它。我既不能评论也不能添加答案。可能与»Stack Overflow 需要来自另一个域的外部 JavaScript,该域被阻止或无法加载有关。« 我不知道如何解决,因为我不知道 SO 正试图在那里告诉我。