gpt4 book ai didi

c++ - 为什么从指针使用类函数时会出现 SIGSEGV 错误?

转载 作者:行者123 更新时间:2023-11-30 04:15:23 25 4
gpt4 key购买 nike

我是 C++ 的新手,遇到了第一个麻烦。我有一个 GameObject 类,我必须在其中存储许多组件。每个组件都是一个不同的类,所以我不能正常使用 vector。我决定存储组件的类型和指向该对象的指针。问题是,当我得到,返回那个组件,并使用一个使用它的成员变量的类函数时,我得到 SIGSEGV 错误(是的,听起来很困惑)。但是,如果我通常使用那个类和那个函数,我不会收到 SIGSEGV 错误。

游戏对象.h:

enum ComponentType
{
MeshComponent // currently only one type
};

struct Component
{
ComponentType type;
void *pointer;
};
class GameObject
{
private:
std::vector<Component> components;
public:
void addComponent(ComponentType type);
template<typename T> T* getComponent()
{
for(std::vector<Component>::size_type i = 0; i != components.size(); i++)
{
// will need to somehow check T type later
if(components[i].type == MeshComponent)
{
return (Mesh*)&components[i].pointer;
}
}
Debug::Loge(GAMEOBJECT_TAG, "No %s component in %s gameobject!", componentTypeToString(MeshComponent).c_str(), name.c_str());
return 0;
}
}

游戏对象.cpp:

void GameObject::addComponent(ComponentType type)
{
Component component;
component.type = type;
if(type == MeshComponent)
{
Mesh *mesh = new Mesh();
component.pointer = &mesh;
}
components.push_back(component);
}

网格.h

class Mesh
{
public:
Mesh *setMeshData(std::vector<GLfloat> data);
};

网格.cpp

Mesh *Mesh::setMeshData(vector<GLfloat> data)
{
meshData = data;
return this;
}

最后这就是我使用它的方式:

GameObject object;
void somefunction()
{
object.addComponent(MeshComponent);
object.getComponent<Mesh>()->setMeshData(triangle_data); // SIGSEGV HERE!!
// if I use this one instead above - no sigsegv, everything is fine.
Mesh mesh;
mesh.setMeshData(triangle_data);
}

最佳答案

在这里

    Mesh *mesh = new Mesh();
component.pointer = &mesh;

您正在获取指向mesh 的指针的地址。而是尝试

    Mesh *mesh = new Mesh();
component.pointer = mesh;

因为您将 Component 指针定义为 void* pointer。如果你想获取 Mesh* 的地址,你必须使用 void** pointer,但这是愚蠢的,并且会导致另一个 SIGSEGV.

关于c++ - 为什么从指针使用类函数时会出现 SIGSEGV 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18330105/

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