c – 什么更快:重新创建或清除()?

前端之家收集整理的这篇文章主要介绍了c – 什么更快:重新创建或清除()?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对std :: vector<>的性能有疑问在C.通过调用其clear()方法重用相同的向量是否更快,还是更快地重新创建向量?

以下示例不是真实的代码,只是为了弄清楚问题是什么:

//Example ONE: is this faster
std::vector<int> foo;
for(int i = 0; i < 100; ++i)
{
    foo.clear();
    for(int j = 0; j < 100; ++j)
    {
        foo.push_back(i+j);
    }
}

//Example TWO: or is that faster?
for(int i = 0; i < 100; ++i)
{
    std::vector<int> foo;
    for(int j = 0; j < 100; ++j)
    {
        foo.push_back(i+j);
    }
}

解决方法

clear()不能通过其契约释放向量内存,而只是将内部“size”标志设置为0,这样该方法将更快.
原文链接:https://www.f2er.com/c/111219.html

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