Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
std::map我想在 C++ 中通信 stl 对象,例如std::list使用 MPI,但我不知道如何制作。
std::map
std::list
不幸的是,这不可能直接。您将需要进行某种序列化。
由于您提到 MPI,您可能对高性能感兴趣。在这种情况下,使用序列化可能不是最好的主意。所以我会远离更复杂的 STL 结构,只使用std::vector.
std::vector