gpt4 book ai didi

c++ - boost::log::r​​ecord_view 赋值运算符

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:49:23 24 4
gpt4 key购买 nike

#include <boost/log/core/record_view.hpp>

struct A
{
boost::log::record_view view;
};

int main()
{
const A a = {};
A b;
b = a;

const boost::log::record_view r;
boost::log::record_view rr;
rr = r;
}

第二个已编译,而第一个未编译。编译器说,隐式复制赋值运算符的形式为 A& A::operator=(A&),但我不知道为什么在这种情况下编译第二个。我当然可以手动编写重载的 operator =,但我想知道这种行为的原因。

Live example

看起来问题只出在 C++98 上,所以只在 boost 中使用移动模拟。

BOOST_COPYABLE_AND_MOVABLE(record_view)

在哪里

   #define BOOST_COPYABLE_AND_MOVABLE(TYPE)\
public:\
TYPE& operator=(TYPE &t)\
{ this->operator=(static_cast<const ::boost::rv<TYPE> &>(const_cast<const TYPE &>(t))); return *this;}\

最佳答案

也许这会对某人有所帮助,问题是,实际上 record_view 有 3 个赋值运算符。一个来自 BOOST_COPYABLE_AND_MOVABLE 的形式

TYPE& operator=(TYPE &t)\
{ this->operator=(static_cast<const ::boost::rv<TYPE> &>(const_cast<const TYPE &>(t))); return *this;}\

另外两个是:

/*!
* Copy assignment
*/
record_view& operator= (BOOST_COPY_ASSIGN_REF(record_view) that) BOOST_NOEXCEPT
{
m_impl = that.m_impl;
return *this;
}

/*!
* Move assignment. Source record contents unspecified after the operation.
*/
record_view& operator= (BOOST_RV_REF(record_view) that) BOOST_NOEXCEPT
{
m_impl.swap(that.m_impl);
return *this;
}

由于第二个运算符而编译的第二个代码,其中BOOST_COPY_ASSIGN_REF

   #define BOOST_COPY_ASSIGN_REF(TYPE)\
const ::boost::rv< TYPE >& \

但是只有当

N4296 12.8/18.2

for all the non-static data members of X that are of a class type M (or array thereof), each such class type has a copy assignment operator whose parameter is of type const M&, const volatile M& or M.

因此,只会检查 record_view 的第一个赋值运算符。

关于c++ - boost::log::r​​ecord_view 赋值运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31921069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com