データメンバーとしてとを持つPoint
クラスがあります。過負荷になったX
Y
Name
T operator-(const Point<T> &);
これは、2 点間の距離を計算し、値を返します。
template < typename T>
T Point<T>::operator-(const Point<T> &rhs)
{
cout << "\nThe distance between " << getName() << " and "
<< rhs.getName() << " = ";
return sqrt(pow(rhs.getX() - getX(), 2) + pow(rhs.getY() - getY(), 2));;
}
main
機能_
int main () {
Point<double> P1(3.0, 4.1, "Point 1");
Point<double> P2(6.4, 2.9, "Point 2");
cout << P2 - P1;
return EXIT_SUCCESS;
}
しかし問題は、このプログラムがコンパイルされず、次のエラーが表示されることです。
Undefined symbols:
"Point<double>::operator-(Point<double>&)", referenced from:
_main in main.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
どんな助けでも大歓迎です...