如何有效地超载功能,而不会疯狂?

时间:2016-10-27 22:18:50

标签: c++ overloading

所以我有这个功能(有80行):

int listPlatformInfo(..., char * foo)
{
    ... 

    for (uint32_t a = 0; a < platformCount; a++)
    {
        platformInfo(platforms, info, foo);
    }
    return 0;
}

我有20个不同的函数重载 platformInfo(); 有没有办法让这个函数重载,其中唯一的变化是foo的数据类型,而不复制整个函数 20次

2 个答案:

答案 0 :(得分:12)

使用模板:

template<typename T>
int listPlatformInfo(..., T foo) // or T* ?
{
    ... 

    for (uint32_t a = 0; a < platformCount; a++)
    {
        platformInfo(platforms, info, foo);
    }
    return 0;
}

答案 1 :(得分:3)

这正是泛型的原因。见template functions

    template<class T>
    void myGenericFunction(T parameter)
    {
        cout << parameter << " is of type "<< typeid(parameter).name() << endl;
    }

    int main()
    {
        myGenericFunction<int>(1);
        return 0;
    }