Post: [C++] Help về cách sử dụng khuôn lớp template!!!
User: 11520036
Infraction: Sai box
Points: 1
Administrative Note:
Message to User:
Original Post:
User: 11520036
Infraction: Sai box
Points: 1
Administrative Note:
Cái này post vào sub box Lập trình của "Góc học tập"
Message to User:
Cái này post vào sub box Lập trình của "Góc học tập"
Original Post:
Mọi người giúp e sửa lại chổ lỗi trong đoạn code này với
PHP Code:
template <class T> class point
{
public:
T x;
T y;
public:
point(T abs=0,T ord=0)
{
x=abs;
y=ord;
}
friend ostream &operator<<(ostream &o,point &);
void display();
};
ostream &operator<<(ostream &o,point &m) // lỗi
{
o<<m.x<<","<<m.y<<endl;
return o;
}
template <class T> void point<T>::display()
{
cout<<x<<","<<y<<endl;
}