《编程:使用 C++ 的原理与实践》第 3 版,作者:Stroustrup
3rd Edition of Programming: Principles and Practice Using C++ by Stroustrup

原始链接: https://www.stroustrup.com/programming.html

本文介绍的是 Bjarne Stroustrup 的《编程:使用 C++ 的原理和实践》一书的第三版。 本书面向渴望掌握基本编程概念并获得实际应用程序开发所需实用技能的个人。 尽管其前身在全球成千上万的学生中取得了成功,但这个更新版本侧重于基本原则而不是语言细节。 它对编程进行了广泛的介绍,涵盖过程、面向对象、泛型方法以及低级技术。 它以当代 C++ 为重点(C++20 和 C++23),旨在为创建功能齐全、可靠、安全、可维护和高效的软件提供坚实的基础。 它主要面向初学者,也可以使寻求加深对核心概念理解的经验丰富的开发人员受益。 本书涵盖了各种概念、技术和语言元素,同时强调清晰、易于理解和适用性。 此外,还提供在线资源,例如讲座幻灯片、代码示例和进一步阅读材料。

正文讨论了对编程语言进行清晰介绍的重要性,特别关注第一章。 作者主张包含一个“hello world”示例并保持最小的复杂性,以确保不同读者的最大可访问性。 在后续章节中提到了从一个图形库 (FLTK) 到另一个图形库 (Qt) 的更改,引发了有关对学习曲线的影响的问题。 SFML 是多个 AI 编码助手用于特定任务的图形库,人们对其在行业中的受欢迎程度以及对训练数据的影响表示担忧。 作者指出,由于使用“using namespace std;”,他们更喜欢 Stroustrup 的代码。 谈话转向关于命名约定的争论,特别是变量名称的长度和清晰度。 虽然有些人认为长的描述性名称可以提高可读性,但另一些人则认为较短的名称可以提高代码的效率。 个人经历和分歧随之而来,凸显了适应个人编程风格的重要性。 在整个对话中,引用了 C++ 的各个方面,例如模板元编程和标准模板库 (STL),展示了完全掌握该语言所需的知识的深度和广度。
相关文章

原文
Stroustrup: Programming -- Principles and Practice Using C++ (3rd Edition)
home | C++ | FAQ | technical FAQ | publications | WG21 papers | TC++PL | Tour++ | Programming | D&E | bio | interviews | videos | quotes | applications | guidelines | compilers

Modified April 18, 2024.

Addison-Wesley ISBN 978-0-13-830868-1. April 2024.

You can buy directly from the publisher.


Programming: Principles and Practice Using C++, Third Edition, will help anyone who is willing to work hard learn the fundamental principles of programming and develop the practical skills needed for programming in the real world. Previous editions have been used successfully by many thousands of students. This revised and updated edition

  • Assumes that your aim is to eventually write programs that are good enough for others to use and maintain
  • Focuses on fundamental concepts and techniques, rather than on obscure language-technical details
  • Is an introduction to programming in general, including procedural, object-oriented, and generic programming, rather than just an introduction to a programming language
  • Covers both contemporary high-level techniques and the lower-level techniques needed for efficient use of hardware
  • Will give you a solid foundation for writing useful, correct, type-safe, maintainable, and efficient code
  • Is primarily designed for people who have never programmed before, but even seasoned programmers have found previous editions useful as an introduction to more effective concepts and techniques
  • Covers a wide range of essential concepts, design and programming techniques, language features, and libraries
  • Uses contemporary C++ (C++20 and C++23)
  • Covers the design and use of both built-in types and user-defi ned types, complete with input, output, computation, and simple graphics/GUI
  • Offers an introduction to the C++ standard library containers and algorithms

ABOUT THE AUTHOR Bjarne Stroustrup is the designer and original implementer of C++, as well as the author of The C++ Programming Language and A Tour of C++, and many popular and academic publications. He is a professor of Computer Science at Columbia University in New York City. Dr. Stroustrup is a member of the US National Academy of Engineering, and an IEEE, ACM, and CHM fellow. He received the 2018 Charles Stark Draper Prize, the IEEE Computer Society's 2018 Computer Pioneer Award, and the 2017 IET Faraday Medal.

informit.com/aw informit.com/series/indepth stroustrup.com/Programming

Pearson, Addison-Wesley ISBN 978-0-13-830868-1


"Programming: Principles and Practice using C++ (3rd Edition)", aka PPP3, is an introduction to programming for people who have never programmed before. It will also be useful for people who have programmed a bit and want to improve their style and technique - or simply learn modern C++. It is designed for classroom use, but written with an eye on self study. Ealier versions of this book have been used as the basis for first programming classes for electrical engineering, computer engineering, and computer science students at Texas A&M University and in many other places.

People who have seen PPP2 will notice that PPP3 is about half its size. What I have done to keep the weight down is to

  • strengthen the foundational chapters usually covered in a one-semester course, utilizing key parts of C++20 and C+23, and re-basing the Graphics/GUI chapter code on Qt for portability (e.g., to browsers and phones).
  • placed the more specialized chapers (known as "broadening the view" in PPP2) on the Web for people to use as needed. See below.
  • eliminate the pure reference material. You now can find more and more up-to-date material on the web, e.g. cppreference.com.
The supporting material for PPP2 is available as ever (lecture slides, code, etc.).

Here are some PPP3 samples

  • Preface. What the book promises, and what it does not promise.
  • Table of Contents.
  • Chapter 0: Notes to the Reader. Some notes on the approach taken by the book.
  • Chapter 10: A Display Model. A sample chapter. If you are a real novice, don't read this chapter quite yet. I post it to show teachers and more experienced readers where the book gets to in the 5th week or so (assuming two chapters a week). Also, to show off a little bit of contemporary C++.


These chapters were written using C++14, rather than C++23, but are still correct and introduce their topics in a reasonable manner.


None yet. See my book covers page for translations of earlier editions.

home | C++ | FAQ | technical FAQ | publications | WG21 papers | TC++PL | Tour++ | Programming | D&E | bio | interviews | videos | quotes | applications | guidelines | compilers
联系我们 contact @ memedata.com