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.
我需要创建一个可以将数据推送到的键控数组。
我需要存储 id 和时间,并在事件中将新的 id 和时间推送到数组中。
看了一圈,很多人都推荐了向量。
我不确定我将如何实现它,有两个键,以及如何推送它们?
如果有人可以帮忙?
使用std::vectorof std::pair<T,U>、 whereT和U是适合 id 和 time 的数据类型。
std::vector
std::pair<T,U>
T
U
例如:
std::vector<std::pair<int, long> > v; v.push_back(std::make_pair(1, 2L)); v.push_back(std::make_pair(1, 2L)); v.push_back(std::make_pair(2, 2L));