the c++ programming language
小扁稻
这个作者很懒,什么都没留下…
展开
-
摘抄
in fact,defining a new general-purpose or application-specific type is the most fundamental programming activity in c++。 a well-designed user-defined type differs from a built-in type only in the way原创 2011-10-26 22:54:59 · 330 阅读 · 0 评论 -
摘抄
the key to writing good programs is to design classes so that each cleanly represents a single concept .often ,this means that you must focus on questions such as:How are objects of this created? Ca原创 2011-10-28 00:18:21 · 657 阅读 · 0 评论 -
摘抄
In practical programming ,there is little advantage in konwing the most obscure language features or for using the largest number of features. a single language feature in isolation is of little int原创 2011-11-03 00:36:43 · 251 阅读 · 0 评论 -
摘
char *const cp; //const pointer to char char const* cp; //pointer to const char const char* cp; //pointer to const char some people find it helpful to read such declarations right-to-left;翻译 2011-11-23 21:41:10 · 193 阅读 · 0 评论