//====================================
//认识构造函数和析构函数-----------------------------------------------
//====================================
#include <iostream>
using namespace std;
//-------------------------------------
//建立一个outPut类
class outPut{
public:
outPut(); //构造函数
~outPut(); //析构函数
void foutput()
{
int a;
cout<<"请输入一个数: ";
cin>>a;
cout<<"它的平方数是: "<<a*a<<endl;
cout<<"它的立方数是: "<<a*a*a<<endl;
}
};
//构造函数---------------------------------
outPut:utPut(){
cout<<"构造函数运行"<<endl;
}
//析构函数--------------------------------
outPut::~outPut(){
cout<<"析构函数运行"<<endl;
}
//主函数----------------------------------
int main(int argc,char *argv[]){
outPut b; //申明一个对象
b.foutput(); //调用foutput()函数
system("pause");
return 0;
}
//主函数运行结束,析构函数运行------------
//=======================================
[ 本帖最后由 电筒 于 2007-11-22 03:03 编辑 ] |