Another term for it is the "indirection operator". I use it in classes when I return data members.

Code:
int Foo::getNumber() const
{
   return this->m_Number;
}
Although technically you dont have to use the this* pointer to return data members, its just somthing I do.