第三章 構造函數和析構函數

1.構造函數   ❶.與類同名,無返回值   ❷.一個類,可以有多個構造函數 (構造函數的重載)   ❸.根據參數類型等的不同,自動調用相應的構造函數 #include <iostream> using namespace std; class A {     private:         int x;int y;     public:     A()                {x=0
相關文章
相關標籤/搜索