【 1. 基本原理 】
- 一个指向 C++ 类的指针与指向结构体的指针类似,访问指向类的指针的成员,需要使用 成员访问运算符 ->,就像访问指向结构的指针一样。
【 2. 实例 】
#include <iostream>
using namespace std;
class Box
{
public:
Box(double l=2.0, double b=2.0, double h=2.0)
{
cout <<"Constructor called." << endl;
length = l;
breadth = b;
height = h;
}
double Volume()
{
return length * breadth * height;
}
private:
double length;
double breadth;
double height;
};
int main(void)
{
Box Box1(3.3, 1.2, 1.5);
Box Box2;
Box *ptrBox;
ptrBox = &Box1;
cout << "Volume of Box1: " << ptrBox->Volume() << endl;
ptrBox = &Box2;
cout << "Volume of Box2: " << ptrBox->Volume() << endl;
return 0;
}