gpt4 book ai didi

C++ 错误 : cannot declare variable 'block' to be of abstract type 'AABB'

转载 作者:行者123 更新时间:2023-11-28 02:34:24 26 4
gpt4 key购买 nike

我刚开始用 SFML 2.0 编写一个简单的游戏。

我创建了类 AABB 并从 SFML 继承了两个类以在类 draw() 方法中编写。但我总是遇到这个错误:

\main.cpp|14|error: cannot declare variable 'block'  to    be of abstract type 'AABB'|

代码:

#include <SFML/Graphics.hpp>
#include <vector>
#include <iostream>
#include "headers/system.h"
#include "headers/AABB.h"

using namespace std;

int main()
{

sf::RectangleShape shape(sf::Vector2f(50,50));

AABB block (shape);

System sys;

if(!sys.create())
{
cout << "Critical error! Did you modified ini files?";
return EXIT_FAILURE;
}

sf::RenderWindow * WindowApp = sys.getHandle();

while (WindowApp->isOpen())
{


sf::Event event;
while (WindowApp->pollEvent(event))
{
if (event.type == sf::Event::Closed)
WindowApp->close();
if(event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Escape)
WindowApp->close();
}

WindowApp->draw(block);
WindowApp->clear();
WindowApp->display();

}

return EXIT_SUCCESS;
}

AABB.h:

#include <SFML\Graphics.hpp>
#include <SFML\System.hpp>
#include <SFML\Audio.hpp>
#include <SFML\Network.hpp>

using namespace std;


class AABB : public sf::Drawable, public sf::Transformable
{

public:
AABB(sf::Vector2f pos, sf::Vector2f size) :
m_pos(pos),
m_size(size) {}

AABB(sf::RectangleShape shape) :
m_sprite(shape)
{}

private:
virtual void draw(sf::RenderTarget& target) const ;

private:

sf::Vector2f m_size;
sf::Vector2f m_pos;
sf::RectangleShape m_sprite;
};

AABB.cpp

#include "../headers/AABB.h"

using namespace std;

void AABB::draw(sf::RenderTarget& target) const
{

target.draw(m_sprite);

}

我认为系统类在这里并不重要 :D顺便说一句,当我从类应用程序编译中删除继承时没有错误。我该怎么办?请帮助我:)

最佳答案

你的类AABB继承了sf::Drawable,是一个抽象类,AABB没有覆盖它的所有纯虚函数-- 这对于使 AABB 成为一个具体的类并拥有它的对象是必要的。我怀疑这是拼写错误的结果。你写的地方

virtual void draw(sf::RenderTarget& target) const ;

AABB.h中,应该是

virtual void draw(sf::RenderTarget& target, sf::RenderStates) const ;

因为后者是 sf::Drawable 的纯虚函数的签名,如 SFML documentation 中所述.当然,您还必须在 AABB.cpp 中更改此函数的定义。

关于C++ 错误 : cannot declare variable 'block' to be of abstract type 'AABB' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28011673/

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