是否有可能为接受的参数创建接受多种数据类型的函数?

时间:2011-12-25 00:24:23

标签: c++ function variables types

编写函数我必须声明输入和输出数据类型,如下所示:

int my_function (int argument) {}

是否可以声明我的函数接受int,bool或char类型的变量,并且可以输出这些数据类型?

//non working example
[int bool char] my_function ([int bool char] argument) {}

4 个答案:

答案 0 :(得分:26)

您的选择

替代方案1

您可以使用模板

template <typename T> 
T myfunction( T t )
{
    return t + t;
}

ALTERNATIVE 2

普通功能重载

bool myfunction(bool b )
{
}

int myfunction(int i )
{
}

您为所期望的每个参数的每种类型提供不同的函数。您可以将它混合使用备选方案1.编译器将适合您。

替代3

您可以使用union

union myunion
{ 
    int i;
    char c;
    bool b;
};

myunion my_function( myunion u ) 
{
}

替代4

您可以使用多态性。对于int,char,bool来说可能是一种过度杀伤,但对于更复杂的类类型更有用。

class BaseType
{
public:
    virtual BaseType*  myfunction() = 0;
    virtual ~BaseType() {}
};

class IntType : public BaseType
{
    int X;
    BaseType*  myfunction();
};

class BoolType  : public BaseType
{
    bool b;
    BaseType*  myfunction();
};

class CharType : public BaseType
{
    char c;
    BaseType*  myfunction();
};

BaseType*  myfunction(BaseType* b)
{
    //will do the right thing based on the type of b
    return b->myfunction();
}

答案 1 :(得分:6)

#include <iostream>

template <typename T>
T f(T arg)
{
    return arg;
}

int main()
{
    std::cout << f(33) << std::endl;
    std::cout << f('a') << std::endl;
    std::cout << f(true) << std::endl;
}

输出:

33
a
1

或者你可以这样做:

int i = f(33);
char c = f('a');
bool b = f(true);

答案 2 :(得分:2)

使用template

template <typename T>
T my_function(T arg) {
  // Do stuff
}

int a = my_function<int>(4);

或者只是过载:

int my_function(int a) { ... }
char my_function(char a) { ... }
bool my_function(bool a) { ... }

答案 3 :(得分:1)

阅读本教程,它提供了一些很好的例子http://www.cplusplus.com/doc/tutorial/templates/