私はコードパッドを使用していて、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.
どんな助けでも大歓迎です。