我在main()
上面定义了一个名为“Pieces”的结构
struct Pieces {
char *word;
int jump;
}
在main()
我有:
int main() {
Pieces *pieceptr;
readFile(preceptor);
cout << (*pieceptr).word << endl; //SEGFAULT occurs here
return 0;
}
在readFile()
我有:
void readFile(Pieces *&pieceptr) {
ifstream fin;
fin.open("data");
int pieceCount;
if(fin.is_open()) {
fin >> pieceCount;
pieceptr = new Pieces[pieceCount];
for (int i = 0; i < pieceCount; i++) {
char *tempWord = new char[20];
fin >> tempWord >> (*pieceptr).jump;
(*pieceptr).word = new char[stringLength(tempWord)];
stringCopy((*pieceptr).word, tempWord);
delete []tempWord;
tempWord = NULL;
pieceptr++;
}
} else {
cout << "Error opening file." << endl;
}
fin.close();
}
这个项目的限制是:
我已经广泛测试了readFile()
函数,它正在按照我的意愿运行(它正确地填充了Pieces数组),但在readFile()
中调用main()
之后,我需要再次访问数组的第一个元素。由于代码现在,我得到一个段错误,因为指针已经超出了数组的范围。如何在不使用指针算法的情况下将指针重置为指向数组内的第一个元素?
答案 0 :(得分:2)
多个指针可以指向同一个内存点。指针也可以复制。解决您问题的最简单方法是创建另一个指针并对其进行全部增加。
void readFile(Pieces *&pieceptr) {
ifstream fin;
fin.open("data");
int pieceCount;
if(fin.is_open()) {
fin >> pieceCount;
pieceptr = new Pieces[pieceCount];
Pieces* pieceIterator = pieceptr;
for (int i = 0; i < pieceCount; i++) {
char *tempWord = new char[20];
fin >> tempWord >> (*pieceIterator).jump;
(*pieceIterator).word = new char[stringLength(tempWord)];
stringCopy((*pieceIterator).word, tempWord);
delete []tempWord;
tempWord = NULL;
pieceIterator++;
}
} else {
cout << "Error opening file." << endl;
}
fin.close();
}