gpt4 book ai didi

c++ - 使用指针从 std::list 中删除元素?

转载 作者:行者123 更新时间:2023-11-30 01:59:47 27 4
gpt4 key购买 nike

class SororityBeerExpo{
public:

std::list<LaysCrankdPepChip> m_chipList;

void destroyChip(LaysCrankdPepChip * target)
{
// m_chipList needs to erase that which is pointed at by target but
// erase() requires an iterator which is not what we got to work with
// remove() needs a value which is not right either
}
}

我的问题是,如何使用指向该元素的指针删除列表中的元素?我想在不使用迭代器代替指针的情况下执行此操作。

最佳答案

您可以对列表中的元素进行[线性]搜索,将每个元素的地址与您的指针进行比较(std::find_if 符合要求)。当然,你最终还是会使用迭代器,因为这就是list::erase。需要。

关于c++ - 使用指针从 std::list 中删除元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15844556/

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