const 修饰this指针

Posted jefy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了const 修饰this指针相关的知识,希望对你有一定的参考价值。

技术分享图片

this指针的本质就是一个常量指针。通过const修饰this指针指向的内存空间。

void OpVar(int a  ,int b )const  <=>const void OpVar(int a  ,int b ) <=>void const  OpVar(int a  ,int b )

以上是关于const 修饰this指针的主要内容,如果未能解决你的问题,请参考以下文章

day04 this指针

函数被const修饰,const修饰的究竟是谁?

虚函数后面的const=0

C++面向对象-static、const

C++ this 指针始终为 const

在类成员函数后面加const