这个前向声明有什么问题

发布于 2024-11-03 07:49:21 字数 471 浏览 3 评论 0原文

有几次我使用了 pimple idiom 来缩短编译时间。为了获得一个“好的”头文件,我返回一个包含 QPoint(Qt 对象)指针的向量指针。

让我们看看我的头文件:

#ifndef CHEXAGON_H
#define CHEXAGON_H

class QPoint;
class QVector;

class CHexagon
{
public:
    CHexagon(const unsigned int & PosX, const unsigned int & PosY, const unsigned int & Radius);
    QVector * getEdges();
    QPoint * getCenter();
private:
    class Pimple;
    Pimple * pPimple;
};

#endif // CHEXAGON_H

它有什么问题吗?

Several times I used the pimple idiom to get a short compilation time. To get a "good" header file I return a pointer of a vector that contains pointer of QPoint (an Qt-object).

Lets have a look at my header file:

#ifndef CHEXAGON_H
#define CHEXAGON_H

class QPoint;
class QVector;

class CHexagon
{
public:
    CHexagon(const unsigned int & PosX, const unsigned int & PosY, const unsigned int & Radius);
    QVector * getEdges();
    QPoint * getCenter();
private:
    class Pimple;
    Pimple * pPimple;
};

#endif // CHEXAGON_H

Whats wrong with it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

貪欢 2024-11-10 07:49:21

QVector 不是一个类,它是一个类模板,不能像您那样声明。

template <typename T> QVector;

然后使用 QVector 应该可以完成您想要的操作。

QVector isn't a class, it is a class template and can't be declared as you did.

template <typename T> QVector;

and then using QVector<QPoint*> should do what you want.

演多会厌 2024-11-10 07:49:21

什么都没有。

是什么让您认为它有问题?

Nothing.

What makes you think that something is wrong with it?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文