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

const成员函数

时间:2015-03-04 23:57:00      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

本文结论:

  const对象、指向const对象的指针或引用只能用于调用其const成员函数。

实例说明:

class A
{
public:
    void mf1(){ cout<<"Function Call"<<endl;  }
    void mf2() const{ cout<<"const Function Call"<<endl;}
};
int main()
{
    A a;
    a.mf1();     //ok
    a.mf2();     //ok
    const A b;
    b.mf1();    //error
    b.mf2();    //ok
    return 0;
}

  听过this指针的应该知道,两个成员函数的声明其实是这样的:

void mf1(A *const this);
void mf2(const A *const this);

(每个成员函数都有一个额外的、隐含的形参this,将该成员函数与调用该函数的类对象捆绑在一起)

  又因为c++规定将普通引用绑定到const对象是不合法的。   

const int ival = 1024;
int &refVal = ival;    //error

  所以得证。

 

const成员函数

标签:

原文地址:http://www.cnblogs.com/gattaca/p/4314498.html

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