
C Plus Plus
SuperLinux
这个作者很懒,什么都没留下…
展开
-
C++ Resources
Intro "C++ is an "object oriented" language. Object oriented programming is a reaction to programming problems that were first seen in large programs being developed in the 70s. All object oriented la转载 2005-06-21 16:14:00 · 2960 阅读 · 0 评论 -
All C++ In-Depth Series Books
1.C++ Template Metaprogramming: Concepts, Tools, and Techniques from Boost and Beyond By David Abrahams, Aleksey Gurtovoy Subscribe Online2.C++ Coding Standards: 101 Rules, Guidelines, and Best Practi转载 2005-06-29 11:04:00 · 1392 阅读 · 0 评论 -
C++类静态数据成员与类静态成员函数
C++类静态数据成员与类静态成员函数 在没有讲述本章内容之前如果我们想要在一个范围内共享某一个数据,那么我们会设立全局对象,但面向对象的程序是由对象构成的,我们如何才能在类范围内共享数据呢? 这个问题便是本章的重点: 声明为static的类成员或者成员函数便能在类的范围内共同享,我们把这样的成员称做静态成员和静态成员函数。 下面我们用几个实例来说明这个问题,类的成员需要保护,通常情况下转载 2005-08-11 17:58:00 · 2150 阅读 · 0 评论 -
Papers written by Googlers
Google Labs HomePapers written by Googlers Papers written by GooglersReturn to Why you should work at Google. Below is a partial list of papers written by people now at Google, showing the range of ba转载 2005-08-16 12:48:00 · 1605 阅读 · 0 评论 -
STL实践指南
这是一篇指导您如何在Microsoft Visual Studio下学习STL并进行实践的文章。这篇文章从STL的基础知识讲起,循序渐进,逐步深入,涉及到了STL编写代码的方法、STL代码的编译和调试、命名空间(namespace)、STL中的ANSI / ISO字符串、各种不同类型的容器(container)、模板(template)、游标(Iterator)、算法(Algorithms)、分配转载 2005-08-25 10:35:00 · 837 阅读 · 0 评论 -
三十分钟掌握STL
三十分钟掌握STL这是本小人书。原名是《using stl》,不知道是谁写的。不过我倒觉得很有趣,所以化了两个晚上把它翻译出来。我没有对翻译出来的内容校验过。如果你没法在三十分钟内觉得有所收获,那么赶紧扔了它。文中我省略了很多东西。心疼那,浪费我两个晚上。译者:karycontact:karymay@163.netSTL概述STL的一个重要特点是数据结构和算法的分离。尽管这是个简单的概念,但这种分转载 2005-08-25 10:42:00 · 888 阅读 · 0 评论 -
C++语言风格流变史
C++语言风格流变史 Note本文发表于2003年12月《优快云开发高手》程序代码也有风格,这算不得什么新鲜事。早在20世纪80年代, C语言程序员就必须在K&R风格和ANSI风格之间择善而从。但平心而论,我确实没有见过哪一种语转载 2006-02-15 14:23:00 · 1114 阅读 · 0 评论