有一个伪代码:
s = input()
if s == 'int':
func<int>(...)
if s == 'char':
func<char>(...)
and there're more if blocks
如何在没有任何if
的情况下编写可以执行此操作的代码。像下面的代码:
s = input()
func<s>(...) #auto detect type in s
我需要一个C ++解决方案。
答案 0 :(得分:2)
虽然使用模板化函数不能直接实现,但我建议使用std::string
与函数指针的表查找。
例如:
typedef void (*Function_Pointer_Type)(void);
struct Table_Entry
{
char const * data_type_name;
Function_Pointer_Type data_type_function;
};
void Process_Int(void);
void Process_Double(void);
static const Table_Entry data_type_function_table[] =
{
{"int", Process_Int},
{"double", Process_Double},
};
static const unsigned int number_of_data_types =
sizeof(data_type_function_table) / sizeof(data_type_function_table[0]);
// ...
for (unsigned int i = 0; i < number_of_data_types; ++i)
{
if (s == data_type_function_table[i].data_type_name)
{
data_type_function_table.data_type_function();
break;
}
}
另一种方法是使用std::map<std::string, Function_Pointer_Type>
。必须在使用之前初始化地图。静态,常量表不需要在运行时初始化。