
C++
tiger_future
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
STL相关算法部分源代码学习
// for_each. Apply a function to every element of a range. template <class _InputIter, class _Function> _STLP_INLINE_LOOP _Function for_each(_InputIter __first, _InputIter __last, _Function __f) { f原创 2016-10-25 16:23:34 · 345 阅读 · 1 评论 -
C++(类-1)
自己罗列了几个String类几个重要的成员函数,并测试通过class String { public: String(const char *str = NULL); String(const String &other); ~String(); String & operator = (const String &other)原创 2016-10-08 10:46:59 · 238 阅读 · 0 评论