摘要: 1 #include 2 using namespace std; 3 4 class MyClass1 5 { 6 public: 7 int a; 8 void Show(bool bSwitch) const //对应const 类 ,注意const的位置 9 {10 cout a = a;16 }17 private:18 int b; 19 };20 21 class MyClass2 : public MyClass122 {23 public:2... 阅读全文
posted @ 2014-03-09 00:28 秋月的私语 阅读(232) 评论(0) 推荐(0) 编辑