我想将字符串转换为数据类型类,为此我使用引用。然后我尝试使用地图而不是以下代码。但是当我尝试编译这个时,我得到了
错误信息:
错误:从 'std::map, void* (*)()>::mapped_type {aka void* ( )()}' 到 'void ' [-fpermissive]的无效转换
代码:
class C1 {
public:
C1() { std::cout << "Object of class C1 created\n"; }
static void * create() { return (void*)new C1; }
};
class C2 {
public:
C2() { std::cout << "Object of class C2 created\n"; }
static void * create() { return (void*)new C2; }
};
typedef void * (*fptr)();
int main() {
std::map<std::string, fptr> fpmap;
fpmap.insert(std::make_pair(std::string("C1"), C1::create));
fpmap.insert(std::make_pair(std::string("C2"), C2::create));
std::string classname;
std::cout << "Insert classname :" << std::flush;
std::cin >> classname;
void * obj = fpmap["C1"];
}