gpt4 book ai didi

c++ - 不匹配运算符[]

转载 作者:太空宇宙 更新时间:2023-11-04 14:45:41 25 4
gpt4 key购买 nike

所以我尝试使用排序函数(类似于气泡)并将一个对象传递给它。如果该对象更大(按字母顺序),则切换然后返回 true 并将其与之前的切换。尽管在 mySort() 中的 if 语句中,我一直收到错误,它说“arr[j] 中的运算符 [] 不匹配”,但据我了解,我正在传递一个对象数组,对吗?为什么会发生这种情况,我该如何解决?

这是司机

#include <iostream>
#include <fstream>
#include <string>
#include "phoneEntry.h"
using namespace std;

void mySort(PhoneEntry &arr, int size)
{
bool inOrder = false;
string temp;
for (int i = size - 1; i > 0 && !inOrder; i--)
{
inOrder = true;
for (int j = 0; j < i; j++)
{
if(arr.alphaGreater(arr[j]))
{
inOrder = false;
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
};

int main()
{
const int MAXNUM = 500;
PhoneEntry entry[MAXNUM];
ifstream filezilla;
filezilla.open("phone.txt");
int count = 0;

if(filezilla)
{
while(count < MAXNUM && entry[count].readEntry(filezilla))
{
count++;
mySort(entry[count], count);
}

for(int i = 0; i < count; i++)
{
entry[i].writeEntry(cout) << endl;
}
}
else
{
cout << "404" << endl;
}

return 0;
}

Phone Entry Header

Phone Number Header

排序文本 (http://pastebin.com/HE8Rsmbg)

最佳答案

  1. arr应该是一个数组,而不是一个引用,像这样 PhoneEntry arr[]

  2. 您应该将整个数组而不是单个元素传递给排序,如下所示:mySort(entry, count);

除此之外,您的代码看起来正常。

我应该补充一点,这不是 C++ 风格的解决方案:在 C++ 中管理数组的首选方法是使用 std::vector<T>来自标准库的容器。 vector 的好处是您不需要“在旁边”传递它们的大小。

关于c++ - 不匹配运算符[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9384675/

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