因此,我尝试使用排序功能(类似于气泡)并将一个对象传递给它。如果该对象较大(按字母顺序),则切换然后返回true,并在其之前切换。尽管在mySort()
内的if语句内显示“ arr [j]中的operator []不匹配”,但我仍然遇到错误,但是据我了解,我正在传递对象数组吗?为什么会发生这种情况,我该如何解决?
这是司机
#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)
最佳答案
arr
应该是数组,而不是引用,例如PhoneEntry arr[]
您应该将整个数组传递给排序,而不是像这样的单个元素:mySort(entry, count);
除此之外,您的代码显示为OK。
我应该补充一点,这不是C ++解决方案:在C ++中管理数组的首选方法是使用标准库中的std::vector<T>
容器。关于向量的好处是您不必“在侧面”传递它们的大小。
关于c++ - 运算符不匹配[],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9384675/