我正在实施std::optional
,但遇到了copy constructors之一的障碍。
以下是我的实施草图:
#include <type_traits>
template<typename T>
class optional
{
public:
constexpr optional()
: m_is_engaged(false)
{}
constexpr optional(const optional &other)
: m_is_engaged(false)
{
operator=(other);
}
constexpr optional &operator=(const optional &other)
{
if(other.m_is_engaged)
{
return operator=(*other);
}
else if(m_is_engaged)
{
// destroy the contained object
(**this).~T();
m_is_engaged = false;
}
return *this;
}
template<typename U>
optional &operator=(U &&value)
{
if(m_is_engaged)
{
operator*() = value;
}
else
{
new(operator->()) T(value);
m_is_engaged = true;
}
return *this;
}
T* operator->()
{
return reinterpret_cast<T*>(&m_data);
}
T &operator*()
{
return *operator->();
}
private:
bool m_is_engaged;
typename std::aligned_storage<sizeof(T),alignof(T)>::type m_data;
};
#include <tuple>
int main()
{
optional<std::tuple<float, float, float>> opt;
opt = std::make_tuple(1.f, 2.f, 3.f);
return 0;
}
问题是编译器抱怨optional
的{{1}}构造函数没有空体:
constexpr
我不确定如何初始化$ g++ -std=c++11 test.cpp
test.cpp: In copy constructor ‘constexpr optional<T>::optional(const optional<T>&)’:
test.cpp:15:5: error: constexpr constructor does not have empty body
}
^
,否则我无法在网上找到参考实现(optional::m_data
显然不使用boost::optional
)。< / p>
有什么建议吗?
答案 0 :(得分:2)
在C ++ 11中,标记为constexpr
的函数和构造函数的功能非常有限。对于构造函数,除了使用声明或使用指令之外,它基本上不能包含static_assert
,typedef
或以外的任何内容,这会排除调用{ {1}}在构造函数体内。