定义类的指针及如何用指针来引用对象-C++类和对象
定义类的指针及如何用指针来引用对象class A{ float x,y; public: float Sum(void) { return x+y; } void Set(float a,float b) { x=a; y=b;} void Print(void) { cout
952.5KB
文件大小:
评论区