gpt4 book ai didi

c++ - 调用基类的运算符...安全吗?

转载 作者:IT老高 更新时间:2023-10-28 12:42:42 25 4
gpt4 key购买 nike

以下模式可以/安全吗?或者有什么缺点吗?(我也将它用于相等运算符)

Derived& operator=(const Derived& rhs)
{
static_cast<Base&>(*this) = rhs;
// ... copy member variables of Derived
return *this;
}

最佳答案

这很好,但恕我直言,通过名称调用基类更具可读性:

Base::operator = (rhs);

关于c++ - 调用基类的运算符...安全吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4734846/

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