📜  C++ this指针

📅  最后修改于: 2020-10-16 06:56:10             🧑  作者: Mango

C++此指针

在C++编程中,这是一个引用该类当前实例的关键字。在C++中,此关键字的3种主要用法。

  • 它可以用于将当前对象作为参数传递给另一种方法。
  • 它可以用来引用当前的类实例变量。
  • 它可以用来声明索引器。

C++此指针示例

让我们看一下C++中此关键字的示例,该示例引用当前类的字段。

#include 
using namespace std;
class Employee {
   public:
       int id; //data member (also instance variable)    
       string name; //data member(also instance variable)
       float salary;
       Employee(int id, string name, float salary)  
        {  
             this->id = id;  
            this->name = name;  
            this->salary = salary; 
        }  
       void display()  
        {  
            cout<

输出:

101  Sonoo  890000
102  Nakul  59000