记得适当的声明成员函数为const.】的更多相关文章

如果确信一个成员函数不用修改它的对象,就可以声明它为const,这样就可以作用于他的const对象了.因为const对象只能调用它的const方法. template<class T> class Vector { public: int length() const//如果这里没有const,那么该程序会运行失败,因为padded_length的方法中的参数是const的. { ; }; int length(int); }; template<class T> int padd…
从成员函数说起 在说const成员函数之前,先说一下普通成员函数,其实每个成员函数都有一个隐形的入参:T *const this. int getValue(T *const this) { return val; } const成员函数 声明形式是:int getValue() const; 编译器内部实现如下 int getValue(const T* const this) { return val; } 表示this指针指向的内容是不可改变的,所以当试图修改val时会编译报错. cons…
demo <pre name="code" class="cpp">class Test { public: const void OpVar(int a, int b) { a = 100; } protected: private: }; Test类中有一个成员函数OpVar,有一个const修饰符也可以写成下两种形式 class Test { public: void const OpVar(int a, int b) { a = 100; } p…
demo <pre name="code" class="cpp">class Test { public: const void OpVar(int a, int b) { a = 100; } protected: private: }; Test类中有一个成员函数OpVar.有一个const修饰符也能够写成下两种形式 class Test { public: void const OpVar(int a, int b) { a = 100; } p…
#include <iostream> class A { private: std::string a; public: A(std::string b) :a(b){} const char& operator[](int b)const //两个const都不能少 { return a[b]; } }; int main() { A a("hello"); //a[0]='j'; 不能 ]; *p = 'j'; 也不能,编译器信息:“return”: 无法从“…
http://blog.csdn.net/gmstart/article/details/7046140 在C++的类定义里面,可以看到类似下面的定义: 01 class List { 02 private: 03      Node * p_head; 04      int length; 05      …… 06 Public: 07      int GetLength () const; 08      bool GetNodeInfo(const int index,Node &…
第一个事实: 某类中可以这么声明定义两个函数,可以重载(overload) void pa(){ cout<<"a"<<endl; } void pa() const{ cout<<"b"<<endl; } 上面的写法是正确的. 基于这个事实,我思考了一下它的机制. 试验得出, 第二个事实: 普通函数(不是类的成员函数),可以这样来重载(overload): void fun(const int &a) { c…
一些成员函数改变对象,一些成员函数不改变对象. 例如: int Point::GetY() { return yVal; } 这个函数被调用时,不改变Point对象,而下面的函数改变Point对象: void Point:: SetPt (int x, int y) { xVal=x; yVal=y; } 为了使成员函数的意义更加清楚,我们可在不改变对象的成员函数的函数原型中加上const说明: class Point { public: int GetX() const; int GetY()…
一些成员函数改变对象,一些成员函数不改变对象. 例如:  int Point::GetY() { return yVal; }  这个函数被调用时,不改变Point对象,而下面的函数改变Point对象:  void Point:: SetPt (int x, int y) { xVal=x; yVal=y; }  为了使成员函数的意义更加清楚,我们可在不改变对象的成员函数的函数原型中加上const说明:   class Point {  public: int GetX() const; int…
const 是constant 的缩写,“恒定不变”的意思.被const 修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的健壮性.所以很多C++程序设计书籍建议:“Use const whenever you need”. 1.用const 修饰函数的参数 如果参数作输出用,不论它是什么数据类型,也不论它采用“指针传递”还是“引用传递”,都不能加const 修饰,否则该参数将失去输出功能.const 只能修饰输入参数: 如果输入参数采用“指针传递”,那么加const 修饰可以防止意外地…