[WIP]C++ Objects Oriented

Created: 2021/08/11

 

Classes & Objects
 class definition  
class sample {
    int a; // this scope is private
    public:
      
    ...
};
Class Member Functions  
Class Access Modifiers  
Constructor & Destructor  
Copy Constructor  
Friend Functions  
This Pointer  
Pointer to C++ Classes  
Static Members of a Class  
   

 

 

   
   
   
   
   
   
   
   
Inheritance
   
   
   
   
   
   
   
   
   
Overloading
   
   
   
   
   
   
   
   
   
Polymorphism
   
   
   
   
   
   
   
   
   
Abstraction
   
   
   
   
   
   
   
   
   
Encapsulation
   
   
   
   
   
   
   
   
   
Interfaces
   
   
   
   
   
   
   
   
   
上一篇:头文件 + 宏定义


下一篇:Object-oriented_第四单元总结