
c++
edword20042005
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c++学习二
#include using namespace std; template T max(T a, T b, T c) { if(a > b) b = a; if(c > b) return c; return b; } void swap(int *p1, int *p2) { int *temp=(int *)malloc(sizeof(int)); //i原创 2015-06-03 12:21:59 · 492 阅读 · 0 评论 -
C++学习一
#include #include using namespace std; /* 第一:private, public, protected 访问标号的访问范围。 private:只能由1.该类中的函数、2.其友元函数访问。 不能被任何其他访问,该类的对象也不能访问。 protected:可以被1.该类中的函数、2.子类的函数、以及3.其友元函数访问。原创 2015-06-03 12:20:42 · 429 阅读 · 0 评论 -
Linux驱动学习总结转载博客地址记录
http://blog.youkuaiyun.com/ghostyu/article/details/8094049转载 2015-08-14 09:04:37 · 467 阅读 · 0 评论