0

我正在学习使用 key_value flyweights,我编写了以下代码:

#include <iostream>
#include <string>
#include <boost/flyweight.hpp>
#include <boost/flyweight/key_value.hpp>
#include <boost/flyweight/no_locking.hpp>

class Foo
{
    std::string name_;
public:
    Foo(const std::string& name) { name_ = name; std::cout << "created " << name << "\n"; }
    Foo(const Foo& f) { name_ = f.name_; std::cout << "Copied\n"; }
    ~Foo() {std::cout << "Destroyed " << name_ << "\n"; }
};

typedef boost::flyweight< boost::flyweights::key_value<std::string, Foo >,  boost::flyweights::no_locking > FooLoader;

int main()
{
{
    Foo myF = FooLoader("bar");
}
}

当我运行它时,我得到了以下输出:

created bar
Copied
Destroyed bar
Destroyed bar

我想避免额外的副本,因为我真正的 Foo 复制起来非常昂贵。这也是我使用轻量级的主要原因。那么,有没有办法避免多余的副本?

4

1 回答 1

1

您不必担心这一点,因为编译器可能会在某些情况下使用 RVO 对此进行优化。尽可能使用编译器选项来启用此类优化。

尤其是对于 C++11,您几乎不必担心它,因为它引入了移动语义,即使某些临时对象以享元模式动态创建,也不会花费您太多。

于 2012-03-08T15:26:55.627 回答