#include <iostream>
#include <typeinfo>
#include <map>
#include <stdlib.h>
using namespace std;
struct foo {
int one;
int i;
int s;
};
template<class myType>
void serialize(myType b, string &a, int epe) {
//three.resize(42);
int type = typeid(b).name()[35] == 'S' ? 1 : 0; // testing if the map(b) value weather a struct or an int
if (type) {
auto it = b.begin();
cout << sizeof(it->second) / sizeof(int) << endl;
cout << it->second.one;
} else {
cout << sizeof(b) / sizeof(int) << endl;
}
}
int main() {
cout << "Hello world!" << endl;
map<int, int> hey;
map<int, foo> heya {
{ 1, { 66 } },
};
typedef map<int, foo> mappy;
typedef map<int, int> happy;
string duck;
auto it = heya.begin();
serialize<happy>(hey, duck, 4);
serialize<mappy>(heya, duck, 4);
return 0;
}
所以我收到了这个错误,我认为是因为它测试了地图
在模板的一部分上具有int (map<int,int>)
类型的值
函数哪个不应该达到它的int而不是结构,即使我
在使用该函数之前尝试使用该类型的特殊化,仍然无法正常工作。
serialize\main.cpp|36|error: request for member 'one' in 'it.std::_Rb_tree_iterator<_Tp>::operator->
[with _Tp = std::pair<const int, int>, std::_Rb_tree_iterator<_Tp>::pointer = std::pair<const int, int>*]()->std::pair<const int, int>::second',
which is of non-class type 'int'|
||=== Build finished: 1 errors, 1 warnings ===|
答案 0 :(得分:0)
if
。
在编译时,编译器在编译时不知道if
是真还是假。因此,一般而言,所有代码都必须是可编译的,无论它是否在条件内。
您需要使用重载功能。
typedef map<int, foo> mappy;
typedef map<int, int> happy;
template<class myType>
void serialize(myType b, string &a, int epe) {
cout << sizeof(b) / sizeof(int) << endl;
}
void serialize(mappy b, string &a, int epe) {
auto it = b.begin();
cout << sizeof(it->second) / sizeof(int) << endl;
cout << it->second.one;
}
serialize<happy>(hey, duck, 4);
serialize(heya, duck, 4);