gpt4 book ai didi

c++ - 如何定义自定义类型的通用 std::list?

转载 作者:太空宇宙 更新时间:2023-11-04 14:59:16 25 4
gpt4 key购买 nike

我在尝试定义“行”列表时遇到以下错误:

line-clip.cpp:44: error: expected initializer before '<' token

#include <list>

using namespace std;


class Line {
public:
Point p1;
Point p2;
Line(Point P1, Point P2)
{
p1 = P1;
p2 = P2;
}
}



// Line List
list <Line> lineList;

如何定义“Line”类型的通用列表?

最佳答案

类声明后需要一个分号 :-)。

class Line {
...
}; // put a semicolon here.

关于c++ - 如何定义自定义类型的通用 std::list?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/679660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com