wchar_t
Built-in type intended to hold "wide characters," which are big enough to
hold characters for languages such as Japanese.
Variables defined inside a pair of curly braces are local variables/which exist only while executing the part of the program within the braces. When the implementation reaches the }, it destroys the variables, and returns any memory that they occupied to the system.
Defining a variable as const promises that the variable's value, will not change during its lifetime. Such a variable must be initialized as part of its definition, because there is no way to do so later.
It is usually not worth the bother to use const references for parameters of simple built-in types, such as int or double. Such small objects are usually fast enough to copy that there's little... (查看原文)
The first is the notion that if a container supports indexing, so do its iterators. In other words, beg[-1] is the character at the position immediately before the one that beg denotes. We can think of beg[-l] as an abbreviation for *(beg - 1). (查看原文)
读完c++ primer,再读完ac++,惊叹于koenig夫妇竟用如此紧凑的篇幅展示c++诱人的魅力,的确是c++很好的入门书籍……正像作者所说,“once you have written enough programs that use the material that we have covered so far, you will no longer need the detailed tutorial ...
(展开)
0 有用 青团 2012-06-01 18:13:10
非常适合适合入门
0 有用 123456 2018-04-25 15:47:19
以为自己c++已经入了门,看完入门书发现自己,唉
0 有用 iCoolSea 2012-07-03 10:03:30
很不错的入门书,写作方式很独特,无基础者可能有点吃力,但是坚持下来应该问题不大。
0 有用 Linxh 2008-05-16 20:37:05
不错
1 有用 MEMS 2012-08-21 18:05:16
嗯哼(PongBa给了我不少线索和计划上新变化的契机) COME ON~ 看了引言部分 按照PongBa给的建议 先TCPL 再这个 这本书的讲述方式很独特 实践者的方法 逼近尾声
0 有用 邺有 2021-08-27 22:31:42
扫盲。能看懂了。能刷题了。 @2020-11-28 11:17:57
0 有用 小y箭塔流 2021-04-20 22:03:46
此书绝对是快速扫完《C++ Primer》基础知识后的不二之选。
0 有用 邺有 2020-11-28 11:17:57
扫盲。能看懂了。能刷题了。
0 有用 豆友206615528 2019-12-31 02:02:37
中文翻译差强人意 还有一些拼写等校验错误 但这本书真的很不错 能让我快速上手c++
0 有用 一介文夫 2019-12-27 09:18:07
算是入门了