[Reprint]C++函数前和函数后加const修饰符区别

c++中关于const的用法有很多,const既可以修饰变量,也可以函数,不同的环境下,是有不同的含义。今天来讲讲const加在函数前和函数后面的区别。比如:

01 #include<iostream>
02  
03 using namespace std;
04  
05 // Ahthor:  过往记忆
06 // E-mail:  [email protected]
07 // Blog:    http://www.iteblog.com
08 // 转载请注明出处
09  
10 class TestClass {
11 public:
12     size_t length() const;
13     const char* getPContent();
14     void setLengthValid(bool isLengthValid);
15 private:
16     char *pContent;
17     size_t contentLength;       //A
18     bool lengthIsValid;         //B
19     size_t precontentLength;
20 };
21  
22 size_t TestClass::length() const{ //函数名后加const
23     if(!lengthIsValid){
24         contentLength= strlen(pContent);    //C
25         lengthIsValid = true;           //D
26     }
27  
28     return contentLength;
29 }
30  
31 const char* TestClass::getPContent(){//函数名前加const
32     return pContent;
33 }
34  
35 void TestClass::setLengthValid(bool isLengthValid){
36     lengthIsValid = isLengthValid;
37 }
38  
39 int main(void){
40     TestClass *tc =new TestClass;
41     tc->setLengthValid(false);
42     tc->length();
43     char * content = tc->getPContent();      //E
44     return 0;
45 }

其中类TestClass中的length函数和getPContent函数分别在函数名后和前加了const修饰符,如果试图编译上面的代码,将会得到下面的错误:

1 --------------------配置: mingw5 - CUI Debug, 编译器类型: MinGW--------------------
2 检查文件依赖性...
3 正在编译 C:\Users\wyp\Desktop\未命名1.cpp...
4 [Error] C:\Users\wyp\Desktop\未命名1.cpp:24: error: assignment of data-member `TestClass::contentLength‘ in read-only structure
5 [Error] C:\Users\wyp\Desktop\未命名1.cpp:25: error: assignment of data-member `TestClass::lengthIsValid‘ in read-only structure
6 [Error] C:\Users\wyp\Desktop\未命名1.cpp:43: error: invalid conversion from `const char*‘ to `char*‘
7 [Warning] C:\Users\wyp\Desktop\未命名1.cpp:45:2: warning: no newline at end of file
8  
9 构建中止 未命名1: 3 个错误, 1 个警告

里面有三个错误,也就是代码C、D、E处的三个地方。为什么C和D处的代码会出错,原因如下
length函数名的后面加了const修饰符,这样说明函数的成员对象是不允许修改的。我们都知道,在类的成员函数里面,默认是在成员函数的第一个位置
是this指针,如果在成员函数(只能是成员函数,要是类的静态函数或者是非成员函数就不可以在函数名后面加上const)后面const,则说明
this指针的值是不可以修改的,只能读取。而上面的length函数可能会修改里面的contentLength和lengthIsValid的值,这
样编译器肯定是不允许的,所以这样是会出现错误的。
解决方法是:在类的A、B处的成员前面加上mutable修饰符:

1 mutable size_t contentLength;   //A
2 mutable bool lengthIsValid;     //B

从字面的意思知道,mutalbe是“可变的,易变的”,跟constant(既C++中的const)是反义词。在C++中,mutable也是
为了突破const的限制而设置的。被mutable修饰的变量,将永远处于可变的状态,即使在一个const函数中。这样在C、D处将不会出错。
那么,为什么E处出现了错误。这是因为在函数名getPContent前加了const修饰符,意味着该函数返回的值只能是读取,而不能被修改。而E处的content却为char *是可以被修改的,这与const正好相反了,所以出现了错误。解决方法是:在char *前面加上const修饰符,即:

1 const char * content = tc->getPContent(); //E

再去编译运行,这样就不会出现错误了。

from: http://www.iteblog.com/archives/214)

时间: 2024-10-29 23:48:47

[Reprint]C++函数前和函数后加const修饰符区别的相关文章

C++ 成员函数前和函数后加const修饰符区别

博客转载自: https://www.iteblog.com/archives/214.html 分析以下一段程序,阐述成员函数后缀const 和 成员函数前const 的作用 #include<iostream> using namespace std; class TestClass { public: size_t length() const; const char* getPContent(); void setLengthValid(bool isLengthValid); pri

函数后面的const修饰符的作用

比如 void Fun() const; 的const是修饰什么的? 其实是修饰this指向的对象的. 这篇文章很详细的说明了const的作用,其中第三点说明了这种const的作用:const的用法,特别是用在函数前面与后面的区别! 在该函数Fun()内不能进行对成员变量的修改,调用非const的成员函数也不行

Delphi 中 函数参数中的 const 修饰符的本质以及注意事项

来自:http://blog.csdn.net/farrellcn/article/details/9096787 ------------------------------------------------------------------------------ 很多书籍中说函数参数如果是String类型的,如果在函数内部不改变参数的值,使用 const 修饰符会加快程序的执行速度,至于如何加快的?有的人说是因为 const 函数保证了参数字符串不会被复制.以前也没有对这个问题深入研究

【C语言】函数参数中的const修饰符

  通常,字符串操作函数原型中,都会在形参前面加上const修饰符,表示此指针不能用于修改字符串的值   比如:char *strcpy(char *strDest, const char *strSrc)  但是可不可以通过 在函数里定义一个指针指向strSrc,来改掉字符串的值呢? 给出以下代码: #include <STDIO.H> #include<stdlib.h> void fuc(const char *p) { char *q = p; *q='b'; } int

通过函数名后加const重载的函数如何区分调用

参考网址:http://bbs.csdn.net/topics/391833689?page=1 在一般情况下默认调用不带const的函数. 想要调带const函数,解决办法: 1. 将调用发生的函数加const 2. 如果重载函数在某类内,将类实例(或this)做强制转换(const): const_cast<const A*>(this)->func();

常量函数(函数后加const)

const用在成员函数后 主要是针对类的const 对象 如: class Text{ public:     void printconst(void)const{cout<<"hello"<<endl;}     void print(void){cout<<"hello"<<endl;} private:     int k; }; const Text a; //上面定义了类Text的一常量对象 int mai

C++函数后面加const修饰

声明一个成员函数的时候用const关键字是用来说明这个函数是 "只读(read-only)"函数,也就是说明这个函数不会修改任何数据成员(object). 为了声明一个const成员函数, 把const关键字放在函数括号的后面.声明和定义的时候都应该放const关键字. 任何不会修改数据成员的函数都应该声明为const类型.如果在编写const成员函数时,不慎修改了数据成员,或者调用了其它非const成员函数,编译器将指出错误,这无疑会提高程序的健壮性. #include<ios

const修饰函数参数 const修饰函数返回值 const修饰成员函数

看到const 关键字,C++程序员首先想到的可能是const 常量.这可不是良好的条件反射.如果只知道用const 定义常量,那么相当于把火药仅用于制作鞭炮.const 更大的魅力是它可以修饰函数的参数.返回值,甚至函数的定义体. const 是constant 的缩写,"恒定不变"的意思.被const 修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的健壮性.所以很多C++程序设计书籍建议:"Use const whenever you need". 1

装饰器 装饰带参数的函数和添加函数

修饰带参数函数 1.带参数函数func1 def func1(arg): print arg 2.装饰器 def outer(fun): def wrapper(arg): print 'test' fun(arg) return wrapper 装饰器outer时期返回函数wrapper,由于要func1 带有参数,如需要将wrapper的函数带上参数,func1被装饰后重新定义为: func1(arg)=wrapper(arg)= { print 'test' func1(arg) } 在修