C Traps and Pitfalls 在线电子书 图书标签: C programming 计算机 C/C++ 程序语言 Pitfalls 程序设计 Traps
发表于2024-12-31
C Traps and Pitfalls 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024
历久弥新,值得一读再读!
评分有学长说这本说有点偏老,也的确,说中有些技巧现在可能很少用到,比如函数原型新老式的区别。但是说中的大多数技巧却如作者所言,是C程序员都会面临的。是前辈经验的总结。
评分暂时退出该领域课程,若有机会自修math1081再说
评分informative yet a bit boring.
评分深入内核和原理
Andrew Koenig 是AT&T公司Shannon实验室大规模编程研究部门中的成员,同时也是C++标准委员会的项目编辑。他的编程经验超过30年,其中有15年在使用C++,他已经出版了超过150 篇和C++有关的论文,并且在世界范围内就这个主题进行过多次演讲。
Even C experts come across problems that require days ofdebugging to fix. This book helps to prevent such problems byshowing how C programmers get themselves into trouble. Each ofthe book's many examples has trapped a professional programmer. In addition to its examples, C Traps and Pitfalls offers adviceon: *avoiding off-by-one errors *understanding and constructing function declarations *understanding the subtle relationship between pointers andarrays Distilled from the author's experience over a decade ofprogramming in C, this book is an ideal resource for anyone,novice or expert, who has ever written a C program. 0201179288B04062001
这本书中介绍的绝大部分内容都偏旧了,或者说对于我这样的编码1年以上的人来说,有点过时了,跟准确的说,书中介绍的东西,我基本上都知道了。不过该书很适合刚学习C语言的新手看看,对于新手了解使用C语言过程中可能存在的“陷阱”很有帮助。 一本书总是或多或少地带给自己以...
评分【P97 -L5】 toupper(int c) { if(c >= 'a' && c <= 'z') c += 'A' ? 'a'; return c; } 看到这心想,哦印刷错误。翻过一页,说到把它实现为宏: #define toupper(c) ((c) >= 'a' && (c) <= 'z' ? (c) + ('A'?'a') : (c)) 然后就想知道原书是怎样...
评分花了两天时间翻完一遍。 对一个栗子印象深刻: “0123456789”[n] 居然也是一个合法的数组形式。 -_-!!! printf("%c", “0123456789”[0])将打印字符‘0’ 依次类推,printf("%c", “0123456789”[1])将打印字符‘1’,printf("%c", “0123456789”[2])将打印字符‘2’…… ...
评分书中的内容感觉有一部分还是比较不错的,我觉得我如果碰到了那些问题,肯定栽了。但是这个书中的有些内容确实该去掉的,因为C标准都出了很多年了。 但是感觉书的内容并不怎么配得上各种超高评价。 或许是我的C语言水平比较差吧。 不过这本书还是值得多读几遍的。
评分这本书既不深,也不浅,适合有一定基础和经验的C程序员阅读,其中2.1理解函数声明,3.2非数组的指针,3.6边界计算与不对称边界,4.3命名冲突与static修饰符,8.2答案,这些内容对我比较有用,发现了自己的知识漏洞。库函数与可移植性缺陷这两章可以稍微看下即可,书中的程序最...
C Traps and Pitfalls 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024