我有这个函数声明:
template<class T>
a::A& a::A::operator<<(T out) {
std::cout << out;
return (*this);
}
这个函数定义:
namespace a {
...
class A {
...
template<class T> A& operator<<(T);
我称之为:
a::A b;
b << 1;
这是Makefile:
app: main.o A.o
g++ main.o A.o -o app
main.o: main.cpp
g++ -c main.cpp
A.o: A.cpp
g++ -c A.cpp
它给了我:
未定义符号:a::A& a::A::operator<< <int>(int)
这是为什么?