我有一个模板类,它有很多功能,但本质上是一个向量类。我想为 bool 类型添加一个函数。
#include <vector>
template <typename T>
class reflected{
private:
T*dev_;
T*host_;
ar_size size;
reflected<T>& operator=(reflected<T>& rhs);//do not impliment. assign not allowed.
reflected( reflected<T>& old); //do not impliment. Copy not allowed.
public:
reflected():size(0L),dev_(NULL),host_(NULL){}
reflected(ar_size n):size(n),dev_(NULL),host_(NULL){init();}
reflected(const T*x,ar_size n):size(n),dev_(NULL),host_(NULL){init();set(x);}
~reflected();
void init();
void init(ar_size n);
void init(const T*x,ar_size n);
void set(const T * x);
void setat(ar_index i, T x);
const T getat(ar_size i);
const T * devPtr();
const T operator [](const ar_index i);
ar_size length(){return size;}
};
我想vector<ar_index> reflected<bool>::which()
在反射类的特殊情况下添加一个函数,这是唯一有意义的情况。做这个的最好方式是什么。编译器似乎不喜欢将 which() 添加到反射中,并且只为 bool 定义它。