Go To English Version 超过100万源码资源,1000万源码文件免费下载
  • ToDoAddOnProfile_src 一个调试STL的VC插件
  • examples.zip C++标准程序库中的STL源码例子
  • STLProgrammerGuide.rar STL Programmer s Guide.chm
  • MFCIteratorDemo.zip 这个项目演示了STL风格的迭代子,如何编写自己的迭代子,使用容器来简化STL,并与STL兼容。在这个例子中使用的容器是MFC框架应用程序,文档模板,文档类CWinApp,
  • C++_src.zip The files in this directory are the source code for all examples in D.R. Musser, G.J. Derge, and Atul Saini, STL Tutorial and Reference Guide, Second Edition: C++ Programming with the Standard Template Library (Boston, MA: Addison-Wesley, 2001).
  • alg2.rar test program for STL generic algorithm that search for elements that satisfy a condition
  • STL_without_warnings_src.zip 去除使用STL时编译warning
  • A_group_of1794769162004.zip A group of word-analysis examples for C++/STL novices
  • Effective-STL-revised.rar 本书是大名鼎鼎的Scott Meyers写的修订版,包括了容器、向量、字符串、迭代、算法等STL信息。
  • C-STL.rar C语言标准库,包括一些函数的用法和特点,例如:C 常用字符串处理函数及使用示例 char *strncat(char *s1, const char *s2, size_t n) 将字符串s2中最多n个字符添加到字符串s1的后面。s2的第一个字符重定义s1的null终止符。返回s1的值  int strcmp(const char *s1, const char *s2) 比较字符串s1和字符串s2。函数在s1等于、小于或大于s2时分别返回0、小于0或大于0的值  ...