码迷,mamicode.com
首页 > 其他好文 > 详细

this指针

时间:2017-07-19 23:15:36      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:pre   class   结构   ini   log   code   指针   init   str   

this指针,通常是用在结构体中来指向自身的指针。

简单举个例子就可以理解了:

struct ju
{
    int r,c;
    void init(int r,int c)
    {
        this->r=r,this->c=c;//矩阵结构体中的变量r,c的指针修改。 
    }
}

 

this指针

标签:pre   class   结构   ini   log   code   指针   init   str   

原文地址:http://www.cnblogs.com/gshdyjz/p/7208371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!