C++構造函數(shù)與析構函數(shù)的使用方法
析構函數(shù)(destructor) 與構造函數(shù)相反,當對象脫離其作用域時(例如對象所在的函數(shù)已調用完畢),系統(tǒng)自動執(zhí)行析構函數(shù)。
#include
class animal
{
public:
animal()
{
cout<<"hello"<
~animal()
{
cout<<"析構函數(shù)"<
void animal1();
};
void animal::animal1 () //構造函數(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;
}
評論