gpt4 book ai didi

c++ - 没有从类型 bankAccount 的返回值到函数返回类型 int 的可行转换

转载 作者:行者123 更新时间:2023-11-27 23:36:49 26 4
gpt4 key购买 nike

所以,我正在构建一个项目并遇到错误:

no viable conversion from returned value of type bankAccount to function return type int
|111|error: invalid operands to binary expression ('bankAccount' and 'int')|

int bankAccount::searchfor(bankAccount lists[], int length, int acctNum)
{

for(int i = 0; i < length; i++)
{
if(lists[i] == acctNum)
{
return lists[i];
}
else
return -1;
}

}

最佳答案

bankAccount::searchfor中,函数的返回类型是int,但是返回一个lists[i],其类型为银行账户

作为一个猜测,你打算返回 i 而不是:

int
bankAccount::searchfor(bankAccount lists[], int length, int acctNum) {
for(int i = 0; i < length; i++) {
if(lists[i] == acctNum) {
return i;
} else
return -1;
}
}

但是,如果找到 acctNum,您的意思似乎是返回 i,否则返回 -1。因此,将 return -1 移动到循环结束但未找到 acctNum 时返回的值。

    for(int i = 0; i < length; i++) {
if(lists[i] == acctNum) {
return i;
}
}
return -1;

关于c++ - 没有从类型 bankAccount 的返回值到函数返回类型 int 的可行转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58615424/

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