Nathing
分类: C/C++
2009-07-07 13:59:25
成员函数中,不必显式地使用 this 指针来访问被调用函数所属对象的成员。对这个类的成员的任何没有前缀的引用,都被假定为通过指针 this 实现的引用:
bool same_isbn(const Sales_item &rhs) const { return isbn == rhs.isbn; }在这个函数中 isbn 的用法与 this->units_sold 或 this->revenue 的用法一样。
bool same_isbn(const Sales_item &rhs) const {return this->isbn == rhs.isbn; }
构造函数是特殊的成员函数
构造函数的形参指定了创建类类型对象时使用的初始化式。通常,这些初始化式会用于初始化新创建对象的数据成员。构造函数通常应确保其每个数据成员都完成了初始化。
The installation of wxWidgets is finished. On certain
platforms (e.g. Linux) you'll now have to run ldconfig
if you installed a shared library and also modify the
LD_LIBRARY_PATH (or equivalent) environment variable.
wxWidgets comes with no guarantees and doesn't claim
to be suitable for any purpose.
Read the wxWidgets Licence on licencing conditions.