gpt4 book ai didi

c++ - 无法解析符号列表

转载 作者:太空宇宙 更新时间:2023-11-04 09:34:41 24 4
gpt4 key购买 nike

<分区>

我在下面的代码中出现了一个奇怪的错误:

#ifndef BALL_H_
#define BALL_H_

#include <list>

#include "SFML/Graphics.hpp"

using namespace sf;

class Ball : public CircleShape {

protected:
unsigned int mass; //the mass of the ball
float xSpeed; //the x component of the ball's speed
float ySpeed; //the y component of the ball's speed

public:
//Constructor : need the screen dimensions to center it
Ball(const unsigned int width, const unsigned int height);

//function that update the position of the ball and handle collisions.
void update(const unsigned int width, const unsigned int height, list<Ball>::iterator *it);
};
#endif /* BALL_H_ */

错误是:无法解析符号“列表”。但是,我在同一个项目的另一个文件中使用列表库,它工作得很好。

我正在使用 eclipse 和 linux。

到目前为止,我在 eclipse 论坛中找到的唯一解决方案是关闭并重新打开该项目...对我不起作用。

感谢您的帮助 =)

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