C++点滴----关于类常成员函数

2018-06-18 00:05:49来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

关于C++中,类的常成员函数

声明样式为:   返回类型 <类标识符::>函数名称(参数表) const

一些说明:

1、const是函数声明的一部分,在函数的实现部分也需要加上const

2、const关键字可以重载函数名相同但是未加const关键字的函数

3、常成员函数不能用来更新类的成员变量,也不能调用类中未用const修饰的成员函数,只能调用常成员函数。即常成员函数不能更改类中的成员状态,这与const语义相符。

例一:说明const可以重载函数,并且实现部分也需要加const

#include <iostream>
using namespace std;

class TestA
{
public:
  TestA(){}
  void hello() const;
  void hello();
};
void TestA::hello() const
{
  cout << "hello,const!" << endl;
}
void TestA::hello()
{
  cout << "hello!" << endl;
}

int main()
{
  TestA testA;
  testA.hello();
  const TestA c_testA;
  c_testA.hello();
}

运行结果:

例二:用例子说明常成员函数不能更改类的变量,也不能调用非常成员函数,但是可以调用常成员函数。非常成员函数可以调用常成员函数

#include <iostream>
using namespace std;

class TestA
{
public:
  TestA(){}
  TestA(int a, int b)
  {
    this->a = a;
    this->b = b;
  }
  int sum() const;
  int sum();
  void helloworld() const;
  void hello();
private:
  int a,b;
};
int TestA::sum() const
{
  //this->a = this->a + 10;//修改了类变量,编译时会报错误1 
  //this->b = this->b + 10;//同上 
  //  hello();  //调用了非成员函数,编译时报错误2
  return a + b;
}
int TestA::sum()
{
  this->a = this->a + 10;
  this->b = this->b + 10;
helloworld();
//可以调用常成员函数 return a + b; } void TestA::helloworld() const { cout << "hello,const" << endl; } void TestA::hello() { cout << "hello" << endl; } int main() { TestA testA; testA.sum(); const TestA c_testA; c_testA.sum(); }

当注释去掉时,编译会报错误1,表示类的常成员函数不能修改类的变量。

错误2如下,表示常成员函数不能调用非常成员函数

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:学习C++ Primer 的个人理解(一)

下一篇:【OpenCV】opencv3.0中的SVM训练 mnist 手写字体识别