91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++類中的繼承實例詳解

發布時間:2020-10-21 22:04:12 來源:腳本之家 閱讀:151 作者:lqh 欄目:編程語言

C++類中的繼承實例詳解

實例效果:

C++類中的繼承實例詳解

實現代碼:

#include<iostream> 
#include<string> 
using namespace std; 
 
 
 
class Person 
{ 
public: 
 Person(const char* name = "abc") 
  :_name(name) 
 { 
  cout << "Person()" << endl; 
 } 
 
 Person(const Person& pp) 
  :_name(pp._name) 
 { 
  cout << "Person(const Person&)" << endl; 
 } 
 
 
 Person& operator=(const Person& pp) 
 { 
  cout << "Person& operator=(const Person&)" << endl; 
  if (this != &pp) 
  { 
   _name = pp._name; 
  } 
  return *this; 
 } 
 
 ~Person() 
 { 
  cout << "~Person()" << endl; 
 } 
 
protected: 
 string _name; 
}; 
 
 
 
class Student :public Person 
{ 
public: 
 Student(const char* name, int num) 
  :Person(name) 
  , _num(num) 
 { 
  cout << "Student()" << endl; 
 } 
 
 Student(const Student& A) 
  :Person(A) 
  , _num(A._num) 
 { 
  cout << "Student(const Student& A)" << endl; 
 } 
 
 Student& operator=(const Student& A) 
 { 
  cout << "Student& operator=(const Student& A)" << endl; 
  if (this != &A) 
  { 
   Person::operator=(A); 
   _num = A._num; 
  } 
  return *this; 
 } 
 
 ~Student() 
 { 
  cout << "~Student()" << endl; 
 } 
 
 
 
private: 
 int _num; 
}; 
 
 
void test() 
{ 
 
 Student a1("peter", 20); 
 Student a2(a1); 
 a2 = a1; 
} 
 
 
 
int main() 
{ 
 test(); 
 return 0; 
} 

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

木兰县| 锦州市| 东乡县| 孝感市| 夏邑县| 屯门区| 南澳县| 柳林县| 双牌县| 区。| 扬州市| 乌什县| 天长市| 新津县| 股票| 济源市| 东安县| 得荣县| 宁陕县| 商都县| 舟山市| 乾安县| 克东县| 濉溪县| 沽源县| 塘沽区| 固原市| 深圳市| 宁国市| 海林市| 江口县| 阿巴嘎旗| 灵寿县| 荣昌县| 塔河县| 墨竹工卡县| 台安县| 西昌市| 印江| 鄱阳县| 五华县|