返回指针的方法,指向另一个头中声明的数组对象,

时间:2010-12-10 03:19:28

标签: c++ arrays pointers methods forward-declaration

我遇到了两个缠绕在一起的问题。

  • 首先,我希望有一个指向堆上对象的指针数组。 (在另一个标头中声明的对象)

  • 其次,我想让一个方法返回指向其中一个对象的指针。

我当前的代码是一些摸索的结果,并且将失败,因为我不能使用“bar”作为返回类型而不完全声明它。但我看不出怎么解决这个问题。我试图让“getBar”成为一个函数的指针,但后来我不知道如何让它访问** barArray,而不是它是一个成员方法。

非常感谢任何帮助:D

我的代码:

foo.h中

#ifndef FOO_H
#define FOO_H

//forward declaration
class bar;

class foo  
{  
    public:  
        //constructor
        foo(int x);  
        //method
        bar * getBar(int y);  
    private:  
        int howManyBars;
        bar **barArray;  
};

#endif

foo.cpp

#include "foo.h"
#include "bar.h"  

//constructor
foo::foo(int x)
{
    howManyBars = x;
    barArray = new bar *[howManyBars];

    for (int i=0; i < howManyBars ; i++)
    {
        barArray[i] = NULL; //set all pointers to NULL
    }
}

//method
bar * foo::getBar(int y)
{
    y = (y - 1);
    // if the pointer is null, make an object and return that
    if (barArray[y] == NULL)
    {
        barArray[y] = new bar();
    }
    return barArray[y];
}

bar.h

#ifndef BAR_H
#define BAR_H

#include <iostream>

class bar
{
    public:
        void test(){std::cout << "I'm alive!\n";};
};
#endif

1 个答案:

答案 0 :(得分:1)

除了一些拼写错误之外,这个编译很好:

  1. 定义条形类后需要使用分号。
  2. bar * foo:getBar(int y)

  3. 应该是:

    bar * foo::getBar(int y)
    

    3

    bar[i] = NULL; //set all pointers to NULL
    

    应该是:

    barArray[i] = NULL; //set all pointers to NULL