4

我在键盘上,我正在尝试使用 C++ 来提高我的技能。我以前从来没有使用过模板,所以我试着研究如何使用它们。下面的代码是结果,不幸的是,它不起作用。我确实尝试为我的问题寻找解决方案,但由于我没有太多使用模板的经验,我无法在我的问题和其他问题之间建立任何联系。所以,我决定寻求帮助。

template <class A>
class Vector2 {
public:
    A x,y;
    Vector2(A xp, A yp){
        this->x = xp;
        this->y = yp;
    }
};

template <class B, class A>
class rayToCast {
public:
    rayToCast(B angle, Vector2<A> origin, Vector2<A> point1, Vector2<A> point2){
        this->RAngle = angle;
        this->Point1 = point1;
        this->Point2 = point2;
    }
private:
    B RAngle;
    Vector2<A> point1,point2;
};

int main(){
    rayToCast<short int, float> ray(45, Vector2<float>(0.0, 0.0), Vector2<float>(-10.0, -3.0), Vector2<float>(5.0, 7.0));
    return 0;
}

这是输出:

t.cpp: In constructor 'rayToCast<B, A>::rayToCast(B, Vector2<A>, Vector2<A>, Vector2<A>) [with B = short int, A = float]':
t.cpp:26:   instantiated from here
Line 14: error: no matching function for call to 'Vector2<float>::Vector2()'
compilation terminated due to -Wfatal-errors.

任何帮助表示赞赏。

4

6 回答 6

6

构造rayToCast函数尝试初始化point1point2通过调用Vector2的默认构造函数。但它没有。

您要么必须为向量类提供默认构造函数,要么显式初始化rayToCast. 一种方法是这样做:

rayToCast(B angle, Vector2<A> origin, Vector2<A> point1, Vector2<A> point2)
   : RAngle(angle), point1(point1), point2(point2)
{ }
于 2013-01-14T20:43:22.963 回答
3

该错误与模板无关。

您的Vector2类没有默认构造函数,但您想在rayToCast.

在 的构造函数中使用成员初始值设定项列表rayToCast或在Vector2.

于 2013-01-14T20:44:02.300 回答
3

您的代码中有两个问题:

Vector2没有默认构造函数,将Vector2传递给rayToCast构造函数时会调用默认构造函数。

rayToCast(B angle, Vector2<A> origin, Vector2<A> point1, Vector2<A> point2)

您需要将默认构造函数添加到 Vector2 并初始化x,y为默认值:

template <class A>
class Vector2 {
public:
    A x,y;
    Vector2() : x(), y() {}  // default constructor
    Vector2(A xp, A yp){
        this->x = xp;
        this->y = yp;
    }
};

另外,您有错字,应该是 Point1、Point2 而不是 point1/point2。

class rayToCast {
public:
    rayToCast(B angle, Vector2<A> origin, Vector2<A> point1, Vector2<A> point2){
        this->RAngle = angle;
        this->Point1 = point1;
        this->Point2 = point2;
    }
private:
    B RAngle;
    Vector2<A> Point1;    // capital P
    Vector2<A> Point2;    // capital P
};
于 2013-01-14T20:48:08.057 回答
2

当您不声明构造函数时,您将获得为您自动生成的默认构造函数(默认构造函数和复制构造函数)。

当您声明构造函数时,您不再获得自动生成的构造函数(因此,如果需要,您必须手动定义其他构造函数)。

因为你定义Vector2(A xp, A yp)了,编译器不再为你自动生成,如果你想使用它Vector2(),你必须自己定义。Vector2()

于 2013-01-14T20:42:57.380 回答
1

拿这部分代码:

rayToCast(B angle, Vector2<A> origin, Vector2<A> point1, Vector2<A> point2){
    this->RAngle = angle;
    this->Point1 = point1;
    this->Point2 = point2;
}

对于外行的 C++ 程序员来说,它看起来像这样初始化Point1and Point2,但事实并非如此。初始化要么在默认情况下完成(这里不可能发生,因为Vector2<A>没有默认构造函数),要么在成员初始化列表中(你没有使用);您在构造函数主体中的分配就是:事后分配。

您可能有理由不提供Vector<A>默认构造函数,因此请rayToCast通过使其构造函数正确初始化构造函数参数中的那些Point1/Point2成员来修复:

rayToCast(B angle, Vector2<A> origin, Vector2<A> point1, Vector2<A> point2)
   : RAngle(angle)
   , point1(point1)
   , point2(point2)
{}

我还建议整理你的变量和参数名称,因为它们让我有点困惑(大写在这里,不在那里,无处,到处,哪里,那里!)

于 2013-01-14T20:58:08.970 回答
0

正如其他人已经指出的那样,错误是您缺少默认构造函数。使用 Bo Persson 建议的语法。

另一个错误是变量名区分大小写,例如,在rayToCast您编写的构造函数中:

this->Point1 = point1;

但是,您将类属性命名为point1。请注意,它与以下内容不同:

this->point1 = point1;
于 2013-01-14T20:52:28.747 回答