先考慮一種情況,對一個已知對象進行拷貝,編譯系統(tǒng)會自動調(diào)用一種構(gòu)造函數(shù)——拷貝構(gòu)造函數(shù),如果用戶未定義拷貝構(gòu)造函數(shù),則會調(diào)用默認拷貝構(gòu)造函數(shù)。

復制代碼
//main.cpp  #include <iostream> #include "student.h" int main()
{
         Student s1;
         Student s2(s1);//Student s2 = s1;//復制對象 return 0;
}
復制代碼
復制代碼
//student.h  #ifndef STUDENT_H 
        		

網(wǎng)友評論