C++程序设计语言(特别版)根普通书版的有什么区别吗

C++程序设计语言(特别版)根普通书版的有什么区别吗,第1张

只看过特别版, 貌似中文翻译的只有特别版。

第三版的是97年出版的,3年后出版了特别版,这个时间段(97~2000)第一C++标准C++98发布了!

给你GG了一下, 别人的回答是: 最大的区别是封面和价格不一样(有待考证)。

《C++程序设计语言》这本书是非常不错的,内容涵盖了整个C++语言,不过中文版确实不敢恭维。现在最新版本是第四版,增加的内容主要是C++11特征和C++11库,目前尚无中文版。

最适合初学者的本科课程教材是:

《C++ 程序设计教程 》钱能 等著,清华大学出版社,2000年, ISBN: 7-302-03421-4(这本书已经有了第二版,不过最好使用第一版,第二版也不错,但是非常不适合初学者!)

下列教材可供参考:

(1)《C++ 语言程序设计》(第2版) 郑莉 董渊著,清华大学出版社,2001年(这本书也有第三版了,变化不大)

(2)《C++语言基础教程》,吕凤翥 编著,清华大学出版社,1999年。

推荐习题集:

(1)《C++语言-习题与解析》,李春葆编著,清华大学出版社。

(2)《C++语言程序设计习题集》,马锐,胡思康编著,人民邮电出版社。

深入学习:

>>本课程只是一个入门课程,通过本课程的学习,学生仅仅是初步掌握了C++程序设计的基础知识和基本思路。在后续的学习和工作中,如果需要 超出本科课程的范围,进一步全面深入学习C++语言,对于初学者(仅仅具备本科课程教学要求水平)来说,建议选择参考书籍

《C++ Primer Plus》(第五版),STEPHEN PRATA著, 译者:孙建春,韦强,人民邮电出版社,2005年

>>如果对于C++语言比较熟悉,已经有了一定实际开发经验,而需要对于C++软件开发具备比较深刻的理解和熟练的技巧,推荐下列参考书:

(1)《C++编程思想》,Bruce Eckel 著,刘宗田等译,机械工业出版社,2001年。

《C++编程思想》第二卷,实用编程技术,Bruce Eckel 著,刁成嘉等译,机械工业出版社,2006年.

(2)《C++程序设计语言(特别版)》Bjarne Stroustrup 著,裘宗燕译,机械工业出版社 2002年

(3)<C++ Primer>中文版(第4版)Stanley B.Lippman等著,李师贤 等译,人民邮电出版社,2006年

曾经有一个人写了这个东西,我觉得有些道理,就贴出来吧

C++/OPP/OOD系列:

层级一:语法/语意(C++)

[Lippman2000] Essential C++

Essential C++,by Stanley B. Lippman Addison Wesley Longman 2000,276 pages

Essential C++ 中文版 ,侯俊杰 译,282页

[Gregory95] C++:The Core Language

C++:The Core Language by Gregory Satir 1995 O'Reilly

C++语言核心,张铭泽 译 ,236页

[Deitel98] The Complete C++ Training Course

The Complete C++ Training Course 2/e by Harvey M.Deitel 1998 Prentice Hall

C++大学教程(第二版),邱仲潘等 译,816页

[Stevens2000] Standard C++ Bible

Standard C++ Bible 2000 Al Stevens IDG

标准C++宝典,林丽闽等 译,766页

[Eckel2000] Thinking in C++

Thinking in C++ 2/e Bruce Eckel 2000 1470 pages Prentice Hall

C++ 编程思想,刘宗田等 译,420页

[Lippman98] C++Primer

C++ Primer,3rd Editoin,by Stanley Lippman and Josee Lajoie

Addison Wesley Longman,1998 1237 pages

C++ Primer 中文版,侯俊杰 译,1999,1237页

[Struostrup2000] The C++ Programming Language

The C++ Programming Language,Special Editoin,by Bjarne Stroustrup

Addison Wesley Longman,2000,1017 pages

C++程序语言经典本,叶秉哲 译,儒林 1999

[ANSI C++] C++规格书 1998.9.1 PDF格式

ANSI C++ 1996 Draft

层级二:专家经验(C++/OOP)

[Meyers96] More Effective C++

More Effective C++,by Scott Meyers,Addison Wesley,1996,318pages

More Effective C++中文版,侯俊杰,培生 2000. 318页

[Meyers98] Effective C++

Effective C++,Second Edition,by Scott Meyers,Addison Wesley Longman,1998.256pages

Effective C++ 2/e 中文版,侯俊杰,培生 2000.256页

[Sutter99] Exceptional C++

Exceptional C++,by Herb Sutter,Addison Wesley Longman,2000.208pages

Exceptional C++中文版,侯俊杰,培生 2000.248页

[Sutter2001]More Exceptional C++

More Exceptional C++ by Herb Sutter,Addison Wesley Longman,2001.

层级三:底层机制(C++ Object Model)

[Ellis90] The Annotated C++ Reference Manual

The Annotated C++ Reference Manual,by Margaret A.Ellis and Bjarne Stroustrup

Addison Wesley Longman,1990,447 pages.

[Lippman96] Inside the C++ Object Model

Inside the C++ Object Model,by Stanley Lippman,Addison Wesley Longman,1996,280pages

深度探索C++物件模型,侯俊杰 译

层级四:设计观念的复用(C++/Patterns)

[Gamma95] Design Patterns:Elements of Reusable Object Oriented Software,

by Erich Gamma,Richard Helm,Ralph Johnson,and John Vlissides,Addison Wesley,1995.395pages

设计模式,李英军等译,机械工业出版社,2000.254页

[Alex2001]Modern C++ Design: Generic Programming and Design Patterns Applied

by Andrei Alexandrescu,Addison-Wesley,2001,352Paper

Genericity/STL系列:

第一个境界是使用STL:

[Josuttis99]:The C++ Standard Library -A Tutorial and Reference,by Nicolai M.Josuttis,

Addison Wesley 1999.799pages

第二个境界是了解泛型技术的内涵与STL的学理:

[Austern98]:Generic Programming and the STL -Using and Extending the C++ Standard

Template library,by Matthew H.Austern,Addison Wesley 1998.548page

第三个境界是扩充STL:

[Stepanov2001]:C++ Standard Template Library by P.J.Plauger,Alexander A.Stepanov,

Meng Lee,David R.Musser,Prentice Hall 2001

这些就是你应该看的书,如果你想成为高手。

以下推荐供参考

C++程序设计语言(特别版)---c++八大金刚----Bjarne Stroustrup“C++之父”

C++ Primer (第3版)中文版----c++八大金刚---Stanley B.Lippman

C++ Primer (第4版)中文版----c++八大金刚---Stanley B.Lippman

C++标准程序库—自修教程与参考手册--c++八大金刚--Nicolai M.Josuttis

C++语言的设计和演化-----c++八大金刚----Bjarne Stroustrup“C++之父”

深度探索C++对象模型---c++八大金刚----Stanley B.Lippman

Essential C++中文版---c++八大金刚---Stanley B.Lippman

Effective C++中文版 2nd Edition-----c++八大金刚------Scott Meyers

More Effective C++中文版----c++八大金刚------Scott Meyers

C++编程思想(第2版) 第1卷:标准C++导引--------Bruce Eckel

C++编程思想(第2版)第2卷:实用编程技术 --------Bruce Eckel

C++程序设计--------------------------谭浩强

C++ 程序设计教程(第2版)--------------钱能

C++ Primer Plus(第五版)中文版---Stephen Prata

广博如四库全书The c++ programming language、c++ Primer

深奥如山重水复Inside the c++ object model

程序库大全The c++ standard libray

工程经验之积累Effective c++、More Effective c++、Exceptional c++

c++八大金刚:

1、Essentital c++---lippman---C++之父,旁枝暂略,主攻核心,轻薄短小,初学者

2、The c++ programming language----C++之父,技术权威,用词深峻,思想深远,c++百科全书代表

3、c++ Primer----lippman---纵横书市十数年,c++最佳教本,c++百科全书代表。

4、Inside the c++ object model-----lippman----揭示c++底层,非常好,非常难。

5、Effective c++-----通过50个编程实例,展示专家经验,行文有趣,深处浅出。

6、More Effective c++----通过35个编程实例,展示专家经验,行文有趣,深处浅出。

7、The c++ standard libray---c++标准库的百科全书。

8、设计模式:可复用面向对象软件的基础

4、c

C程序设计语言(第2版·新版)---C语言“倚天屠龙双剑”---Brian W.Kernighan“C语言之父”

C Primer Plus中文版(第五版)--------C语言“倚天屠龙双剑”---Stephen Prata

C程序设计(第三版)---------------------------谭浩强

C语言大全(第四版)---------------------------HERBERT SCHILDT

C语言接口与实现:创建可重用软件的技术-------------DAVID R.HANSON

C语言参考手册(原书第5版)--------------------------Samuel P.Harbison

C程序设计教程---------------------------------H.M.Deitel/P.J.Deitel

C陷阱与缺陷-----------------------------------Andrew Koenig


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/11090444.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存