假设我有两节课。第一个是简单的模板类Point<N, T>
,另一个是Function<Point<N, T>>
。是否可以在类Function中访问以键入T
和int N
。
这是我的Point
,我认为这很好
template<int N, class T>
class Point {
public:
Point() {
std::fill(std::begin(data), std::end(data), T(0));
}
Point(const std::initializer_list<T> &init) {
std::copy(init.begin(), init.end(), std::begin(data));
}
public: // just for easier testing, otherwise protected/private
T data[N];
};
现在我认为Function
实施有一些问题
template<template<int, typename> class P, int N, typename T>
class Function {
public:
T operator()(const P<N, T> &pt) {
for (int i = 0; i < N; i++) {
// do something and expect loop unrolling
}
return T(0); // for example's sake
}
T operator()(const P<N, T> &pt1, const P<N, T> &pt2) {
// force pt1 and pt2 to have the same `N` and `T`
return T(0); // for example's sake
}
};
以下是我想象我会使用我的课程。也许我在思考过多的java:)
typedef Point<3, float> Point3f;
typedef Point<4, float> Point4f;
Point3f pt3f({ 1.0, 2.0, 3.0 }); // Point<3, float>
Point4f pt4f({ 1.0, 2.0, 3.0, 4.0 }); // Point<4, float>
Function<Point3f> f3; // Function<Point<3, float>> f3;
float val = f3(pt3f); // no error
float val = f3(pt3f, pt3f); // no error
float val = f3(pt4f); // compile error
float val = f3(pt4f, pt3f); // compile error
我怎样才能实现这种行为?我一直收到"Point<3, float>" is not a class template
或too few arguments for class template "Function"
答案 0 :(得分:2)
template<class Point>
class Function;
template<template<int, typename> class P, int N, typename T>
class Function<P<N,T>>
替换:
template<template<int, typename> class P, int N, typename T>
class Function
解决了语法问题。