我有我的函数,我在那儿填充targetBubble,但是在调用此函数后没有填充它,但是我知道它在此函数中填充,因为我在那里有输出代码。

bool clickOnBubble(sf::Vector2i & mousePos, std::vector<Bubble *> bubbles, Bubble * targetBubble) {
    targetBubble = bubbles[i];
}

我正在像这样传递指针
Bubble * targetBubble = NULL;
clickOnBubble(mousePos, bubbles, targetBubble);

为什么不能正常工作?谢谢

最佳答案

因为您正在传递指针的副本。要更改指针,您需要这样的操作:

void foo(int **ptr) //pointer to pointer
{
    *ptr = new int[10]; //just for example, use RAII in a real world
}

要么
void bar(int *& ptr) //reference to pointer (a bit confusing look)
{
    ptr = new int[10];
}

07-28 13:50