C++ this指针
在C++编程中,this是一个引用类的当前实例的关键字。this关键字在C++中可以有3个主要用途。
- 用于将当前对象作为参数传递给另一个方法。
- 用来引用当前类的实例变量。
- 用来声明索引器。
C++ this指针的例子
下面来看看看this关键字在C++中的例子,它指的是当前类的字段。
#include <iostream> 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<<id<<" "<<name<<" "<<salary<<endl; } }; int main(void) { Employee e1 =Employee(101, "Hema", 890000); //creating an object of Employee Employee e2=Employee(102, "Calf", 59000); //creating an object of Employee e1.display(); e2.display(); return 0; }
输出结果如下 -
101 Hema 890000 102 Calf 59000
本站文章除注明转载外,均为本站原创或编译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:C++ this指针
本文地址:http://www.codeinn.net/cplus/1794.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:C++ this指针
本文地址:http://www.codeinn.net/cplus/1794.html