我认为 Boost::variant 在 1_54 中被破坏了。我正在尝试在 boost 变体中使用 std::unique_ptr 作为有界类型。
根据 1_54 文档,变体需要是可复制构造或可移动构造的。
http://www.boost.org/doc/libs/1_54_0/doc/html/variant/reference.html
所以我实现了移动构造函数并在我的代码中禁用了复制构造函数。
当我尝试将某些内容分配给变体对象时,它无法编译。我尝试了各种不同的方法,包括使用 std::move 将数据分配给变体对象,但似乎没有任何效果。在编译错误堆栈跟踪之后,我确定问题出在 variant.hpp 中,它试图备份 rhs 数据。我想知道你们的想法,如果我认为 boost 变体文档是错误的,请告诉我。
提前致谢。
我正在使用 vs2010 编译并使用 C++11。
这是我的测试代码:
#include <iostream>
#include <memory>
#include <utility>
#include <vector>
#include <string>
#pragma warning (push)
#pragma warning (disable: 4127 4244 4265 4503 4512 4640 6011)
#include <boost/optional.hpp>
#include <boost/variant.hpp>
#include <boost/ref.hpp>
#include <boost/shared_ptr.hpp>
#pragma warning (pop)
#include <boost/foreach.hpp>
#include <boost/format.hpp>
using boost::format;
using boost::str;
using namespace std;
class UniqueTest
{
};
class Foo
{
public:
std::unique_ptr<UniqueTest> testUniquePtr;
Foo() { std::cout << "Foo::Foo\n"; }
Foo (Foo&& moveData)
{
}
Foo& operator=(Foo&& moveData)
{
return *this;
}
private:
Foo(Foo& tt);
Foo& operator=(const Foo& tt);
};
int main()
{
Foo x = Foo();
boost::variant<std::wstring,Foo> m_result2;
std::wstring testString = L"asdf";
m_result2 = testString; //Fails
//m_result2 = std::move(testString); //Fails
//m_result2 = std::move(x); //Fails
boost::get<Foo>(m_result2).testUniquePtr.get ();
return 0;
}