新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設計應用 > C++構造函數(shù)與析構函數(shù)的使用方法

C++構造函數(shù)與析構函數(shù)的使用方法

作者: 時間:2016-12-01 來源:網絡 收藏
構造函數(shù),是一種特殊的方法 。主要用來在創(chuàng)建對象時初始化對象, 即為對象成員變量賦初始值,總與new運算符一起使用在創(chuàng)建對象的語句中 。特別的一個類可以有多個構造函數(shù) ,可根據(jù)其參數(shù)個數(shù)的不同或參數(shù)類型的不同來區(qū)分它們 即構造函數(shù)的重載。

析構函數(shù)(destructor) 與構造函數(shù)相反,當對象脫離其作用域時(例如對象所在的函數(shù)已調用完畢),系統(tǒng)自動執(zhí)行析構函數(shù)。

#include
class animal
{
public:
animal()
{
cout<<"hello"<}
~animal()
{
cout<<"析構函數(shù)"<}
void animal1();

本文引用地址:http://m.butianyuan.cn/article/201612/324420.htm

};
void animal::animal1 () //構造函數(shù)
{
int box[3],i,sum=0; //sun記得賦初值
cout<<"請輸入三個數(shù)"< for(i=0;i<3;i++)
{
cin>>box[i];
sum=box[i]+sum;
}
cout<}
int main()
{
animal sh;
sh.animal1 ();
return 0;
}



評論


相關推薦

技術專區(qū)

關閉