我正在用c ++创建一个字符串向量。我需要的是这个向量以字节为单位消耗的总内存。
由于字符串的大小可变,所以现在我遍历每个向量元素并找到它的长度,然后在最后我将它与char的大小相乘。我需要的是一个更清洁的解决方案。
vector<string> v;
//insertion of elements
int len=0;
for(int i=0;i<v.size();i++)
len+=v[i].length();
int memory=sizeof(char)*len;
另外,找到字符串数组的内存消耗的解决方案也可以。让我们说
string a[SIZE]
查找?
的字节数答案 0 :(得分:3)
对std::vector<string>
占用的内存的粗略估计:
sizeof(std::vector<string>) // The size of the vector basics.
+ sizeof(std::string) * vector::size() // Size of the string object, not the text
// One string object for each item in the vector.
// **The multiplier may want to be the capacity of the vector,
// **the reserved quantity.
+ sum of each string's length;
由于vector
和string
不是固定大小的对象,因此动态内存分配可能会占用一些额外的开销。这就是为什么这是一个估计。
编辑1:
上述计算假设单个字符单位;不是多字节字符。