C++ | C++ 类 & 对象 | 指向类的指针
C++ 指向类的指针
一个指向 C++ 类的指针与指向结构的指针类似,访问指向类的指针的成员,需要使用成员访问运算符 ->,就像访问指向结构的指针一样。
与所有的指针一样,您必须在使用指针之前,对指针进行初始化。
实例1:
/*******************************************************************
* > File Name: classPointer.cpp
* > Create Time: 2021年09月 3日 14:48:01
******************************************************************/
#include
using namespace std;
class Box{
public:
Box(double l = 2.0, double w = 2.0, double h = 2.0)
{
cout length = l;
width = w;
heigth = h;
}
double volume(void)
{
return (length*width*heigth);
}
protected:
private:
double length;
double width;
double heigth;
};
int main(void)
{
Box box1(2.0, 3.0, 4.0); /* 声明一个对象box1 */
Box box2(3.0, 4.0, 5.0); /* 声明一个对象box2 */
Box* pbox; /* 声明一个Box类型的指针变量 */
pbox = &box1; /* 获取对象box1的地址 */
cout volume() pbox = &box2; /* 获取对象box2的地址 */
cout volume()
return 0;
}
编译、运行:
PS E:fly-prjcplusplusday5> make
g++ -o classPointer classPointer.cpp -g -Wall
PS E:fly-prjcplusplusday5> .classPointer.exe
calling constructor
calling constructor
the volume of box1: 24
the volume of box2: 60
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.e1idc.net