gpt4 book ai didi

c++ - 使用 vector 迭代器访问方法

转载 作者:行者123 更新时间:2023-11-28 06:19:26 25 4
gpt4 key购买 nike

我有两个 C++ 对象。其中第一个包含第二个声明的 vector :

std::vector<WormCell> cells;    // The dynamic array of the worms cells

在第一个方法中,我尝试使用迭代器遍历 vector 并在第二个方法中调用方法,但出现错误。调用该方法的代码是:

void Worm::drawWorm(sf::RenderWindow &window)
{
for (std::vector<WormCell>::iterator it = cells.begin() ; it != cells.end(); ++it)
{
sf::Vector2f pos = it->getPosition;
circle.setPosition(pos);
}
}

错误是:

错误:绑定(bind)到函数的指针只能用于调用函数。

发生在 it->getPosition 上。

如何使用迭代器访问单元格中的方法?

最佳答案

调用函数需要参数列表:

it->getPosition();
^^

关于c++ - 使用 vector 迭代器访问方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29572633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com