作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码编译:
struct Ret {};
struct A
{
virtual const Ret& fun() = 0;
};
struct B : public A
{
Ret& fun() override
{
static Ret ret;
return ret;
}
};
int main()
{
B b;
}
如何在编译期间禁止使用不同的 const 说明符作为返回类型的覆盖方法返回引用?
最佳答案
以下所有标准引用均指N4659: March 2017 post-Kona working draft/C++17 DIS .
派生函数的返回类型需要与它覆盖的函数的返回类型协变,反之则不然
由 [class.virtual]/7 管理[提取,重点矿]:
The return type of an overriding function shall be either identicalto the return type of the overridden function or covariant with theclasses of the functions. If a function
D::f
overrides afunctionB::f
, the return types of the functions are covariant ifthey satisfy the following criteria:
- [...]
- (7.3) both pointers or references have the same cv-qualification and the class type in the return type of
D::f
has the samecv-qualification as or less cv-qualification than the class type inthe return type ofB::f
.
struct Ret {};
struct A {
virtual const Ret& fun() = 0;
};
struct B : public A {
Ret& fun() override { /* ... */ }
};
int main() {}
我们可能会注意到
A::fun
的多态用法底层接口(interface)
B
object 将强制接口(interface)的返回类型为常量,而以下程序格式错误:
struct Ret {};
struct A {
virtual Ret& fun() = 0;
};
struct B : public A {
const Ret& fun() override { /* ... */ }
};
int main() { }
附带以下指导性编译器错误消息(Clang)
error: return type of virtual function 'fun' is
not covariant with the return type of the
function it overrides
A
将允许多态调用非常量
Ret&
-返回
fun()
即使派生对象将重载实现为返回
const Ret&
,那么我们就有办法修改
const
对象(通过多态),这是未定义的行为。
关于c++ - 不允许用返回非常量引用的方法覆盖返回常量引用的虚方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63576417/
我有一个特别的问题想要解决,我不确定是否可行,因为我找不到任何信息或正在完成的示例。基本上,我有: class ParentObject {}; class DerivedObject : publi
在我们的项目中,我们配置了虚 URL,以便用户可以在地址栏中输入虚 URL,这会将他们重定向到原始 URL。 例如: 如果用户输入'http://www.abc.com/partner ',它会将它们
我是一名优秀的程序员,十分优秀!