淡淡荔枝

文章
5
资源
0
加入时间
3年0月9天

指向class的指针使用方法实例

// pointer to classes example#include <iostream>using namespace std;class Rectangle { int width, height;public: Rectangle(int x, int y) : width(x), height(y) {} int area(voi...