Announcement

Collapse
No announcement yet.

Infraction for 11520036: Sai box

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Infraction for 11520036: Spammed Advertisements, in topic: [C++] Help về cách sử dụng khuôn lớp template!!!

    Post: [C++] Help về cách sử dụng khuôn lớp template!!!
    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 Tvoid point<T>::display()
    {
        
    cout<<x<<","<<y<<endl;

LHQC

Collapse
Working...
X