1. 程式人生 > >this指針

this指針

pre ini 修改 span this str size bsp div

this指針,通常是用在結構體中來指向自身的指針。

簡單舉個例子就可以理解了:

struct ju
{
    int r,c;
    void init(int r,int c)
    {
        this->r=r,this->c=c;//矩陣結構體中的變量r,c的指針修改。 
    }
}

this指針