std::vector<std::string> fileKeyList;怎么清楚内存
时间: 2024-01-14 22:56:37 浏览: 56
vector的内存处理
可以使用`std::vector<std::string>().swap(fileKeyList)`来清空 `fileKeyList` 容器的内存。这个操作会新建一个空的 `std::vector<std::string>` 对象,然后将它与 `fileKeyList` 交换,使得原先的 `fileKeyList` 容器的内存得到释放,而新建的对象则会被销毁。这样可以有效地释放 `fileKeyList` 容器的内存,避免不必要的内存占用。
阅读全文