C++構(gòu)造函數(shù)與析構(gòu)函數(shù)的使用方法
析構(gòu)函數(shù)(destructor) 與構(gòu)造函數(shù)相反,當(dāng)對象脫離其作用域時(shí)(例如對象所在的函數(shù)已調(diào)用完畢),系統(tǒng)自動執(zhí)行析構(gòu)函數(shù)。
#include
class animal
{
public:
animal()
{
cout<<"hello"<
~animal()
{
cout<<"析構(gòu)函數(shù)"<
void animal1();
};
void animal::animal1 () //構(gòu)造函數(shù)
{
int box[3],i,sum=0; //sun記得賦初值
cout<<"請輸入三個數(shù)"<
{
cin>>box[i];
sum=box[i]+sum;
}
cout<
int main()
{
animal sh;
sh.animal1 ();
return 0;
}
評論