gpt4 book ai didi

c++ - "error: no matching function for call to"

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:00:46 26 4
gpt4 key购买 nike

我当时在键盘上,我正在尝试使用 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.

感谢任何帮助。

最佳答案

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

您要么必须为 vector 类提供默认构造函数,要么显式初始化 rayToCast 的成员。一种方法是这样做:

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

关于c++ - "error: no matching function for call to",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14326260/

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