gpt4 book ai didi

c++ - 如何将 Struct * 列表转换为 void * 列表?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:14:17 26 4
gpt4 key购买 nike

我有这个 std::map :

std::map<int, std::list<void *>>

我想把这个列表放在里面:

  std::list<Part *>     _player;

问题是,当我进行分配时

  this->_entities[0] = &this->_player;

我遇到了这个错误

no match for ‘operator=’ (operand types are ‘std::map<int, std::__cxx11::list<void*> >::mapped_type {aka std::__cxx11::list<void*>}’ and ‘std::__cxx11::list<Part*>*’)

所以我想我需要施放它,但是怎么做呢?

最佳答案

我的 utils 中有这个,实际上有效,只需重写整个列表:

template<class T, class I>
vector<T> castVector(const vector<I> v) /**< Cast a uint64* vector to any other type, returns a newly builded vector*/
{
vector<T> ret(v.size());
std::transform(v.begin(), v.end(), ret.begin(), [](I p){return (T)(p);});
return ret;
}

你可以使用这个:

this->_entities[0] = retypeVector<void*, Part*>(_player);

关于c++ - 如何将 Struct * 列表转换为 void * 列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35983276/

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