作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我有一个包含多个方法的抽象基类。
base.h
class Base
{
..
..
virtual void example_1() = 0;
virtual void example_2() = 0;
};
example.h
class Example : public Base
{
virtual void example_1();
virtual void example_2();
};
example.c
void Example :: example_1()
{
cout << "1";
}
void Example :: example_2()
{
cout << "2";
}
纯虚函数必须在派生类中实现,我已经这样做了。但我仍然不清楚为什么会出现此错误
错误“无法分配抽象类型‘Example’的对象:example.h 27:7: 注意:因为以下虚函数在 'Example' 中是纯函数:"
main.c:225:25:
error: cannot allocate an object of abstract type 'Example'
In file included from main.c:328:0:
example.h:27:7: note: because the following virtual functions are pure within 'Example':
base.h:150:18: note: virtual void Base::example_1()
base.h:151:18: note: virtual void Base::example_2()
我有一个特别的问题想要解决,我不确定是否可行,因为我找不到任何信息或正在完成的示例。基本上,我有: class ParentObject {}; class DerivedObject : publi
在我们的项目中,我们配置了虚 URL,以便用户可以在地址栏中输入虚 URL,这会将他们重定向到原始 URL。 例如: 如果用户输入'http://www.abc.com/partner ',它会将它们
我是一名优秀的程序员,十分优秀!