In this book, some statements are very impressive. They are concise but convey much information. Here I summarize some statements which I like most in this book.
- A programming language can be the most important factor in a programmer's day. However. a programming language is really a very tiny part of the world.
- Syntax is the language's primary user interface.
- C++'s greatest strength and its greatest weakness has been its C compatibility.
- What you don't use, you don't pay for.
- Don't fight the type system
- If you want prohibit something, make the operation that does it a private member function
- A using-declaration adds to a local scope. A using-directive does not; it simply renders names accessible.
- To avoid confusion, a using-declaration that is a class member must name a member of a (direct or indirect) base class. To avoid problems with the dominance rule using directives are not allowed as class members.
- When this keyword was introduced into C with Classes, the language didn't have references and C++ borrows its terminology from Simula rather than from Smalltalk.
There are definitely more statements which are impressive. If you have your favorite statement in mind. You can freely share with us.