gpt4 book ai didi

c++ - 模板实例化的原型(prototype)?

转载 作者:搜寻专家 更新时间:2023-10-31 00:28:30 25 4
gpt4 key购买 nike

我有一个 VertexContainer 类型,它是一个 typedef 的实例化模板:

// in a header, included into cpp
class Vertex {/*...*/};
typedef DataVector<Vertex> VertexContainer;

class SomeOtherClass;

我想在 header 中使用 VertexContainer,而不引入 possible 的定义。是否可以为它创建一个“原型(prototype)”(如类声明)?

// in header
class VertexContainer; // <-- this doesnt work
class SomeOtherClass;

SomeHandle<SomeOtherClass> handle1; // this works
SomeHandle<VertexContainer> handle2; // how to prototype VertexContainer?

使用 GCC,我会收到类似于以下内容的错误:

error: using typedef-name 'VertexContainer' after 'class'
class VertexContainer;
(...)
note: 'VertexContainer' has a previous declaration here
typedef DataVector< Vertex > VertexContainer;
^~~~~~~~~~~~~~~`

最佳答案

对于权威的答案,您应该提供更多的上下文,但通常情况下,如果将以下内容单独放在标题中,则可以编译:

template<typename T> class DataVector;
class Vertex;

typedef DataVector<Vertex> VertexContainer;

您需要前向声明模板和类。然而,当你到达这里时:

SomeHandle<VertexContainer> handle2; 

模板和可能的类(取决于模板如何使用类)都需要完全定义。如果您的问题中没有其他上下文,则无法确定这一点。

但是,纯粹作为前向声明,前向声明模板和模板参数足以定义 typedef

此外:

class VertexContainer;

您在该行的错误原因略有不同。 VertexContaner 不是一个类。它是一个 typedef,一个别名。 typedef 不会创建新类。它为现有类创建别名。

关于c++ - 模板实例化的原型(prototype)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45040082/

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