c – std :: string :: clear和std :: list :: clear清除内存中的数据

前端之家收集整理的这篇文章主要介绍了c – std :: string :: clear和std :: list :: clear清除内存中的数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在string :: clear函数的描述中,它说:

clear: Erases the contents of the string,which becomes an empty string (with a length of 0 characters).

在list :: clear函数的描述中,它说:

clear: Removes all elements from the list container (which are destroyed),and leaving the container with a size of 0.

清除是否覆盖字符串和列表的内存或只是释放它们?

解决方法

内存不会被覆盖.它甚至不能保证被释放.

例如,如果您创建一个巨大的字符串并调用其清除,则只会减小其大小,但仍可以保留分配的内存.但是,如果字符串超出范围,它将被释放.

std :: list至少保证列表中的元素将被清除,如果你清除列表.

所以,如果你的内存包含敏感数据,你应该手动覆盖它们.

原文链接:https://www.f2er.com/c/114135.html

猜你在找的C&C++相关文章