首页 > 学院 > 开发设计 > 正文

this指针的作用

2019-11-14 09:40:46
字体:
来源:转载
供稿:网友
//this指针问题 2012年7月18日0:37:13#include <iostream>using namespace std; class point { public: int x,y; point(int a,int b) { x= a; y = b; } void input(int x,int y ) { this->x= x; this->y =y; } void output() { cout<<x<<y; } }; int main() { point a(5,5); a.input(10,10); a.output(); return 0; }

main函数的汇编代码: 这里写图片描述 构造函数的汇编代码: 这里写图片描述 可以看出通过函数调用__fastcall,寄存器传值,先将参数保存在临时变量中,然后通过this指针得到相应的地址,在通过mov指令将数据转移到内存中去


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表