C++继承的模板类无权访问基类

发布于 2024-10-14 14:39:00 字数 532 浏览 0 评论 0原文

我第一次使用模板类,并试图找出为什么编译器似乎不喜欢我使用继承。

这是代码:

template <typename T>
struct xPoint2
{
    T x;
    T y;

    xPoint2() { x = 0; y = 0; };
};

template <typename T>
struct xVector2 : xPoint2<T>
{
    xVector2() { x = 0; y = 0; };
};

编译器输出:

vector2.hh: In constructor ‘xVector2<T>::xVector2()’:
vector2.hh:11: error: ‘x’ was not declared in this scope
vector2.hh:11: error: ‘y’ was not declared in this scope

难道不能以这种方式使用模板吗?

谢谢

I am working with template classes for the first time, and trying to figure out why the compiler doesn't seem to like when I use inheritence.

Here is the code:

template <typename T>
struct xPoint2
{
    T x;
    T y;

    xPoint2() { x = 0; y = 0; };
};

template <typename T>
struct xVector2 : xPoint2<T>
{
    xVector2() { x = 0; y = 0; };
};

The compiler output:

vector2.hh: In constructor ‘xVector2<T>::xVector2()’:
vector2.hh:11: error: ‘x’ was not declared in this scope
vector2.hh:11: error: ‘y’ was not declared in this scope

Is it not possible to use templates in this way?

Thanks

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

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

发布评论

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

评论(2

暖伴 2024-10-21 14:39:00

您需要使用 this->xthis->y 来帮助编译器。

http://www.parashift.com/c++-faq/templates.html #faq-35.19

You need to help the compiler out by using this->x and this->y.

http://www.parashift.com/c++-faq/templates.html#faq-35.19

沧笙踏歌 2024-10-21 14:39:00

您必须明确引用父级:

template <typename T>
struct xVector2 : xPoint2<T>
{
    typedef xPoint2<T> B;
    xVector2() { B::x = 0; B::y = 0; };
};

You must explicitly refer to parent:

template <typename T>
struct xVector2 : xPoint2<T>
{
    typedef xPoint2<T> B;
    xVector2() { B::x = 0; B::y = 0; };
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文