我正在尝试编写一个函数,该函数采用两个具有相同包含类型的容器,例如两个std::vector<int>
s 或 astd::list<int>
和 a std::vector<int>
。(但不是 astd::vector<int>
和 a std::vector<double>
!)
由于我不太确定应该如何完成,所以我决定先编写一个测试程序:
#include <iostream>
#include <vector>
#include <list>
#include <algorithm>
struct vector_wrapper
{
template <typename T>
struct instance_wrapper
{
typedef typename std::vector<T> instance;
};
};
struct list_wrapper
{
template <typename T>
struct instance_wrapper
{
typedef typename std::list<T> instance;
};
};
template <typename T, typename C1, typename C2>
void move(typename C1::instance_wrapper<T>::instance& c1, typename C2::instance_wrapper<T>::instance& c2) // line 29
{
while (c1.size() > 0)
{
c2.push_front(c1.back());
c1.pop_back();
}
}
int main()
{
std::vector<int> v;
std::list <int> l;
v.reserve(10);
for (int i = 0; i < 10; ++i)
v.push_back(i);
move<int, vector_wrapper, list_wrapper>(v, l);
std::for_each(l.begin(), l.end(),
[] (int i) { std::cout << i << " "; }
);
std::cout << std::endl;
return 0;
}
-std=c++11
这段代码使用标志给了我以下 g++ 4.7 的编译时错误:
metaclass.cpp:29:24: error: non-template 'instance_wrapper' used as template
... more ...
为什么编译器不能正确识别instance_wrapper
为模板?