2024年5月16日

摘要: 请注意以下继承体系中各class的constructors写法: 1 class CPoint 2 { 3 public: 4 CPoint(float x=0.0) 5 :_x(x){} 6 7 float x() {return _x;} 8 void x(float xval){_x=xval 阅读全文
posted @ 2024-05-16 22:24 阮春义 阅读(262) 评论(0) 推荐(1) 编辑

导航