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

成员函数的const不能被修改,包括指针

时间:2016-06-11 11:45:17      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>

class A
{
private:
    std::string a;
public:
    A(std::string b) :a(b){}
    char& operator[](int b)const 
    {
        return a[b];
    }
};
int main()
{
    A a("hello");
  //a[0]=‘j‘; 不能
char*p = &a[0];
  *p = ‘j‘; 也不能,编译器信息:“return”: 无法从“const char”转换为“char &” std::cout
<< *p; }

 

成员函数的const不能被修改,包括指针

标签:

原文地址:http://www.cnblogs.com/vhyc/p/5574821.html

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