C++教程-C++ this指针
C++ this指针
在C++编程中,this是一个关键字,用于引用当前类的实例。在C++中,this关键字有三个主要的用法:
- 用于将当前对象作为参数传递给另一个方法。
- 用于引用当前类的实例变量。
- 用于声明索引器。
C++ this指针示例
让我们看一个在C++中使用this关键字引用当前类的字段的示例。
#include <iostream>
using namespace std;
class Employee {
public:
int id; // 数据成员(也是实例变量)
string name; // 数据成员(也是实例变量)
float salary;
Employee(int id, string name, float salary)
{
this->id = id;
this->name = name;
this->salary = salary;
}
void display()
{
cout<<id<<" "<<name<<" "<<salary<<endl;
}
};
int main(void) {
Employee e1 =Employee(101, "Sonoo", 890000); // 创建一个Employee对象
Employee e2=Employee(102, "Nakul", 59000); // 创建一个Employee对象
e1.display();
e2.display();
return 0;
}
输出:
101 Sonoo 890000
102 Nakul 59000