gpt4 book ai didi

c++ - 我可以将逻辑运算符与函数参数一起使用吗?

转载 作者:行者123 更新时间:2023-11-30 01:41:24 25 4
gpt4 key购买 nike

我想创建一个函数,您可以在其中使用 intstring 变量作为参数,但我不知道该怎么做。

我正在写一个我想要实现的小例子:

#include <iostream>
#include <string>

using namespace std;

int function((int a) || (string a))
{
...;
}

int main()
{
int intvar;
string stringvar;

function(intvar);
function(stringvar);
return 0;
}

最佳答案

Can I use logical operators with function paramenters?

不,你不能。

您基本上想要的是函数模板或重载。后者是最简单的方式:

int function(int a)
{
// ...;
}

int function(string a)
{
// ...;
}

如果您对不同类型使用相同的代码,请使用模板:

template<typename T>
int function(T a)
{
static_assert(std::is_convertible<T,int>() || std::is_convertible<T,std::string>());
// ...;
}

关于c++ - 我可以将逻辑运算符与函数参数一起使用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41283635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com