如何获取指向动态分配对象的指针的基址

时间:2016-02-14 00:55:58

标签: c++ pointers dynamic-memory-allocation

我在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();
}

这个项目的限制是:

  • 创建我自己的字符串函数
  • 方括号只应在动态声明或取消分配数组时使用。
  • 除了++和 - 或设置回主页指针外,不要使用指针运算。
  • 不要在指针上使用箭头( - &gt;)表示法。

我已经广泛测试了readFile()函数,它正在按照我的意愿运行(它正确地填充了Pieces数组),但在readFile()中调用main()之后,我需要再次访问数组的第一个元素。由于代码现在,我得到一个段错误,因为指针已经超出了数组的范围。如何在不使用指针算法的情况下将指针重置为指向数组内的第一个元素?

1 个答案:

答案 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();
}