我希望MyVector可以选择std :: vector或boost :: container :: vector。怎么实现呢?我可以使用宏,但我被告知他们不是很安全。感谢。
#define MyVector std::vector
// #define MyVector boost::container::vector
答案 0 :(得分:11)
C ++ 11有别名模板。你可以这样做:
template <typename T>
using MyVector = std::vector<T>;
//using MyVector = boost::container::vector<T>;
然后像这样使用它:
MyVector<int> x;
在C ++ 03中,您可以使用宏或元函数。
template <typename T>
struct MyVector {
typedef std::vector<T> type;
//typedef boost::container::vector<T> type;
};
// usage is a bit tricky
MyVector<int>::type x;
// ... or when used in a template
typename MyVector<T>::type x;