C++:this指针的简单理解

一、什么是this指针 要想理解什么是this指针,首先必须理解在C++中是如何为类的对象分配内存空间的。 1 #include<iostream> 2 using namespace std; 3 class Student{ 4 public: 5 void CountTotal(); 6 void GetName(char name[]); 7 void
相关文章
相关标签/搜索