11

我在 C++11 中使用以下代码并收到一个我不允许使用的错误typeof

有什么问题以及如何解决这个问题?

错误 :

Error   10  error C2923: 'typeof' is not a valid template type argument for parameter 'C'

这是我的代码:

#define HIBERLITE_NVP(Field) hiberlite::sql_nvp< typeof(Field) >(#Field,Field)


class Person{
friend class hiberlite::access;
template<class Archive>
void hibernate(Archive & ar)
{
    ar & HIBERLITE_NVP(name); //ERROR
    ar & HIBERLITE_NVP(age);  //ERROR
    ar & HIBERLITE_NVP(bio);  //ERROR
}
public:
string name;
double age;
vector<string> bio;
};

sql_nvp 是这样的:

template<class C>
 class sql_nvp{
public:
    std::string name;
    C& value;
    std::string search_key;

    sql_nvp(std::string _name, C& _value, std::string search="") :    name(_name), value(_value), search_key(search) {}
 };
4

1 回答 1

30

您正在寻找的是decltype()

#define HIBERLITE_NVP(Field) hiberlite::sql_nvp< decltype(Field) >(#Field,Field)
//                                               ^^^^^^^^

C++ 没有称为typeof.

于 2013-04-18T10:16:46.743 回答