gpt4 book ai didi

C++ 错误 : invalid conversion from ‘char’ to ‘const char*’ [-fpermissive]

转载 作者:行者123 更新时间:2023-11-30 02:21:13 25 4
gpt4 key购买 nike

#include <iostream>
#include <string>
using namespace std;
float findSimilarityScore(string A, string B)
{
string C;
if (A.length() != B.length())
{
return -1;
}
if (A.length() == 0 and B.length() == 0)
{
return -1;
}
else
{
int i;
for (i = 0; A.length() - 1; i = i+1)
{
if (A[i] == B[i])
{
C.append(A[i]);
}
if (A[i] != B[i])
{
return 0;
}

}
cout << C << endl;
}
}

int main()
{
findSimilarityScore("DDS","DAS");
}

当我尝试运行我的代码时,我的 IDE 显示如下:

/home/ubuntu/workspace/hmwk4/hmwk4-1.cpp: In function ‘float findSimilarityScore(std::string, std::string)’:
/home/ubuntu/workspace/hmwk4/hmwk4-1.cpp:24:30: error: invalid conversion from ‘char’ to ‘const char*’ [-fpermissive]

为什么?我想:如果 A 中的第一个字符与 B 中的第一个字符相同,则将此字符添加到字符串 C。如果 A 中的第二个字符与 B 中的第二个字符相同,则将此字符添加到字符串 C 。 等等。

最佳答案

行内

C.append(A[i]);

std::string::append没有采用单个 char 的重载。使用 push_back相反:

C.push_back(A[i]);

这将修复您的编译错误,但您的函数在逻辑上仍然不正确。它在第一次发现两个字符串之间不匹配的任何字符时返回 0,如果两个字符串相同,则它将通过到达非空函数的末尾来调用未定义的行为没有返回值。

关于C++ 错误 : invalid conversion from ‘char’ to ‘const char*’ [-fpermissive],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48759290/

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