📌  相关文章
📜  如何在 C++ 代码示例中获取集合的最后一个元素

📅  最后修改于: 2022-03-11 14:44:46.505000             🧑  作者: Mango

代码示例4
auto it = s.end();
it--;
cout<<*it<<"\n";