程序填空_3

2022/3/6 12:45:09

本文主要是介绍程序填空_3,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

源程序:

#include <iostream>
using namespace std;
int time=0,end=0;
class Test
{
public:
Test()
{
if(time==0) //程序填空
cout<<"欢迎使用测试程序!"<<endl;
time=time+1;
}
~Test()
{
end=end+1;
if(end==time)
cout<<"下次再见!"<<endl;
}
void print()
{
cout<<"共生成过"<<time<<"个对象"<<endl; //程序填空
}
};

void main()
{
Test obj1,obj2,obj3;
obj1.print();
}

 

 结果:

 



这篇关于程序填空_3的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程