C ++我是否正确添加和访问我的Vector?

时间:2013-06-29 19:25:32

标签: c++ vector crash cocos2d-iphone cocos2d-x

我正在创建一个对象并将其添加到std::vector,然后访问std::vector以使用我放置在其中的对象的成员变量。

.h包含std::vector

std::vector<Field *> vFields;
inline std::vector<Field *> getFields() { return vFields; };

在.cpp中我这样做:

Field* f1 = Field::createWithLocation(ccp( p.x, p.y));
addChild(f1->getFieldSprite(), 2);
getFields().push_back(f1); // add the new field to a container
//vFields.push_back(f1); // add the new field to a container

std::cout << "add - # of Fields: " << getFields().size() << std::endl;

当实例化Field* f1时,会发生这种情况:

Field* Field::createWithLocation(cocos2d::CCPoint p)
{
    Field* f = new Field();
    //f->autorelease();
    f->initWithLocation(p);
    return f;
}

void Field::initWithLocation(cocos2d::CCPoint p)
{
    setFieldCenterPoint(p);
    setFieldGraphicName(FIELD::fieldIconFileName);

    setFieldSprite(cocos2d::CCSprite::create(getFieldGraphicName().c_str()));
     getFieldSprite()->setPosition(ccp(getFieldCenterPoint().x, getFieldCenterPoint().y));

    setFieldSize(getFieldSprite()->getContentSize());

    setFieldNumber(7159);

    setFieldTag(7159);

    std::cout << "When Field Created #: " << getFieldTag() << std::endl;
}

这很好用,当创建Field对象时,std :: vector在1中显示size(),getFieldTag()返回7159,就像设置它一样。

问题是当我从向量中访问Field时发生了什么事情我崩​​溃了。我发现如果我输出getTagNumber(),那就不一样了。

访问矢量的示例:

else if (getFieldLayerState() == kActive)
{
    // so did they click on a field?
    std::cout << "Field Layer Status Is Active" << std::endl;
    std::cout << "touch - # of Fields: " << vFields.size() << std::endl;

    // Loop through the field vector and get the size of each field and see if it was tapped    
    for (int f=0; f<vFields.size(); f++)
    {
        //field = (Field*) getFields().at(f);
        Field* field = (Field*) vFields.at(f);

        std::cout << "field #: "<< field->getFieldNumber() << std::endl;
        std::cout << "field tag: "<< field->getFieldTag() << std::endl;

        if (field->getFieldSprite()->boundingBox().containsPoint(location))
        {
            std::cout << "touched field #: "<< field->getFieldNumber() << std::endl;
            std::cout << "touched field tag: "<< field->getFieldTag() << std::endl;
            _dir->Instance()->getAudioEngine()->playBackgroundMusic("tap.mp3", false);    
        }
     }
}

来自cout语句的示例输出:

When Field Created #: 7159
add - # of Fields: 1
Field Layer Status Is Active

touch - # of Fields: 1
field #: 1769234804
field tag: 353394533`

我使用if (field->getFieldSprite()->boundingBox().containsPoint(location))在上面EXEC_BAD_ACCESS行崩溃,很明显,向量中的内容已经从我放入的内容发生了变化,或者看起来如此。

任何人都可以帮我理解我做错了吗?

1 个答案:

答案 0 :(得分:0)

您的getFields函数会返回向量的副本。因此,对返回的向量的任何更改只会发生在副本中,而不会发生在原始文件中。

您想要返回引用

std::vector<Field*>& getFields() { return vFields; }
//                 ^
// Note the ampersand

您可能还想添加该函数的const重载:

const std::vector<Field*>& getFields() const { return vFields; }
// ^                                      ^
// Note the two `const` modifiers, the last one is important

然后,如果你修改了矢量,例如通过添加它,编译器将选择第一个非const重载。如果你不修改矢量,例如当你在向量上调用size时,编译器将选择第二个const重载。