I can't assign value to object in list c++

后端 未结 0 1220
忘掉有多难
忘掉有多难 2020-12-05 05:34

I have struct Point, it contains setters for x and y:

struct Point {
    int x;
    int y;

    Point() {
        x = 0;
        y = 0;
    }

    Point(int _         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题