加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
3.cpp 851 Bytes
一键复制 编辑 原始数据 按行查看 历史
pluto 提交于 2021-06-28 22:47 . 写了几个题目
/*
* @Author: chen haoxuan
* @Date: 2021-06-28 21:25:24
* @LastEditTime: 2021-06-28 21:42:23
*/
#include<iostream>
using namespace std;
class B
{
public:
B(int xx):x(xx){++count;x+=10;}
virtual void show() const
{
cout<<count<<"_"<<x<<endl;
}
virtual ~B()
{
cout<<--count<<"_"<<x<<endl;
}
private:
int x;
protected:
static int count;
};
class D:public B
{
public:
D(int xx,int yy):B(xx),y(yy)
{
++count;
y+=100;
}
void show() const
{
cout<<count<<"_"<<y<<endl;
}
~D()
{
cout<<--count<<"_"<<y<<endl;
}
private:
int y;
};
int B::count=0;
int main()
{
B *pstr = new D(10,20); // x=10,y=20 count=2
pstr->show(); // 基类指针 调用D里的函数
delete pstr;
return 0;
}
/*
2_120
1_120
0_20
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化