Fork me on GitHub
摘要: 程序示例 1 #include 2 using namespace std; 3 class rectange 4 { 5 public: 6 rectange() :length(3), width(5){ cout << "长方形的面积为:" << length*width << end... 阅读全文
posted @ 2015-08-02 21:31 夏成都 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 代码示例 1 #include 2 using namespace std; 3 class A 4 { 5 public: 6 void set(int = 30, int = 5);//声明函数时,初始化参数 7 void count(bool = false);//声明函数时... 阅读全文
posted @ 2015-08-02 16:02 夏成都 阅读(332) 评论(0) 推荐(0) 编辑