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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++点滴----关于类常成员函数相关的知识,希望对你有一定的参考价值。

关于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如下,表示常成员函数不能调用非常成员函数

技术分享

 

以上是关于C++点滴----关于类常成员函数的主要内容,如果未能解决你的问题,请参考以下文章

关于C++静态成员函数访问非静态成员变量的问题

5-1 面向对象基础及Python 类常考问题

关于C++类成员函数转换的疑惑,各位高手帮忙看下··

C++|详解类成员指针:数据成员指针和成员函数指针及应用场合

❥关于C++之类的静态成员变量&静态成员函数

关于C++内联函数