How to find the memory used by any object(如何找到任何对象使用的内存)
问题描述
class Help
{
public:
Help();
~Help();
typedef std::set<string> Terms;
typedef std::map<string, std::pair<int,Terms> > TermMap;
typedef std::multimap<int, string, greater<int> > TermsMap;
private:
TermMap terms;
TermsMap termsMap;
};
我们如何找到term
和termsMap
对象使用的内存(以字节为单位).我们有图书馆吗?
How can we find the memory used (in bytes) by the objects term
and termsMap
. Do we have any library ?
推荐答案
如果您正在寻找对象的完整内存使用情况,这在 C++ 中通常无法解决 - 而我们可以获得实例的大小通过 sizeof()
自身,对象总是可以根据需要动态分配内存.
If you are looking for the full memory usage of an object, this can't be solved in general in C++ - while we can get the size of an instance itself via sizeof()
, the object can always allocate memory dynamically as needed.
如果你能找出一个容器中单个元素有多大,你就可以得到一个下限:
If you can find out how big the individual element in a container are, you can get a lower bound:
size = sizeof(map<type>) + sum_of_element_sizes;
请记住,容器仍然可以分配额外的内存作为实现细节,对于像 vector
和 string
这样的容器,您必须检查 分配大小.
Keep in mind though that the containers can still allocate additional memory as an implementation detail and that for containers like vector
and string
you have to check for the allocated size.
这篇关于如何找到任何对象使用的内存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何找到任何对象使用的内存


基础教程推荐
- 常量变量在标题中不起作用 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 在 C++ 中计算滚动/移动平均值 2021-01-01