
C++学习
砌砖铺路前行
路漫漫其修远兮
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
《C++语言基础》程序阅读——指针、const、static(一)
重要链接 贺利坚老师教学链接代码阅读: 代码片段一:#include <iostream> using namespace std; class base { private: int m; public: base() {}; base(int m){this->m=m;} int get(){return m;} void set(int m){this原创 2016-06-09 22:29:56 · 549 阅读 · 0 评论 -
《C++语言基础》程序阅读——指针、const、static(二)
重要链接 贺利坚老师教学链接代码阅读: 代码片段二: #include<iostream> using namespace std; class CE { private: int a,b; int getmin(){return (a<b? a:b);} public: int c; void SetValue(int x1,int x2, int x3)原创 2016-06-10 01:57:02 · 437 阅读 · 0 评论