c – 为什么类的静态成员函数没有“常量正确性”的概念?

前端之家收集整理的这篇文章主要介绍了c – 为什么类的静态成员函数没有“常量正确性”的概念?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用例:
class A {
  static int s_common;
public:
  static int getCommon () const { s_common; };
};

通常会导致以下错误

error: static member function ‘static int A::getCommon()’ cannot have
cv-qualifier

这是因为const只适用于指向该对象的对象,静态成员函数中不存在该对象.

但是如果允许,静态成员函数的“const”可能与静态数据成员很容易相关.
为什么C中不存在此功能?背后的任何逻辑原因?

解决方法

cv-qualifiers影响函数的签名.所以你可以有:
class A {
  static int s_common;
public:
  static void getCommon () const {  };
  static void getCommon () {  };
};

现在…你会如何调用const?没有const对象可以调用它(嗯,你可以调用它在一个const对象上,但这不是重点).

我只是在这里猜测,可能还有其他原因. 原文链接:https://www.f2er.com/c/115461.html

猜你在找的C&C++相关文章