


desertcart.com: Effective C++: 55 Specific Ways to Improve Your Programs and Designs (Addison-Wesley Professional Computing Series): 9780321334879: Meyers, Scott: Books Review: Excellent Intermediate C++ Book - So... I read alot 1 or 2 star reviews for this book and many mention that Meyers either doesn't go into enough detail or he explains things that are rather obvious to most C++ programmers. I'll tell you a bit of my background and why this book is a goldmine for someone like me: I have a degree in electrical engineering. I did some C++ programming in college but never got to the OOP stuff when I was in school. As I changed jobs over the years eventually I landed in a position where I needed to manage an existing C++ system. I learned the basics of OOP just by doing some reading online and picked it up over the years as most engineers are able to do. I got to the point where I was very familiar with the system and for the most part I could do pretty much everything I needed do for my job. But my only formal training on C++ barely even scratched the surface of its capabilities, so I thought I should read a book on some "good practices" in C++. This book was exactly what I was looking for. Coming in at under 300 pages, and with Meyers listing 55 specific items, this only leaves approximately 5 pages per item. This of course means that this book is not the definitive C++ reference guide. That said, this is not a book for beginners. I would say that you should be practicing OOP within C++ for at least a year before reading this book. (But it probably also isn't a book for experts either, because experts probably already know mostly everything in this book.) Many of the items in this book are structured like this: 1) Meyers shows some snippet of code that looks innocent at first glance. 2) He explains how this could result in disaster if the exact wrong series of events happen (and provides a basic example of how this might unfold). 3) Then he explains how to modify the code to avoid this behavior. (Although, there are some dark corners of C++ that unfortunately can't be completely prevented from happening, even with proper class design. For these, Meyers explains how to minimize these chances of happening.) This structure is very easy to understand and effective for retaining the information in this book. In conclusion, I would recommend this book to anyone who understands the rules/syntax of C++ and has been using it for a few years, but maybe needs some guidance in taming the C++ beast. Review: Coming to C++ as a Java programmer, this book is exactly what I needed! - It's quite difficult to find a good book that assumes your familiarity with programming as well as your obliviousness of the language in question. This book happens to be in that rare minority. The importance of the above assumption cannot be disregarded. This book assumes that you have little to no experience of the language. Every Item goes very deep into explanations of the concepts by giving clear (and realistic) examples of the pros and cons of a certain design. The code examples are especially good as they are not fragmented, yet very easy to understand as well as being relatable (if you are already familiar with programming). The structure of the book is what stands out the most to me. Not only that this will forever remain as a great reference-book, if you're new to C++ like myself, and there is a concept that troubles you, this structure gives you a place to jump into and explore that concept, and from there, expand into other Items of concepts and ideas you may not even have considered in the first place. Another added bonus is the decomposition of each Item. Each Item is concise enough to be read in one go, yet all of them provide details in-length of the matter at hand. On top of that, the Items are not extremely dependent on other Items, making them easy to read as well as referencing.







| Best Sellers Rank | #415,078 in Books ( See Top 100 in Books ) #81 in C++ Programming Language #357 in Software Development (Books) #883 in Computer Software (Books) |
| Customer Reviews | 4.6 4.6 out of 5 stars (553) |
| Dimensions | 7.35 x 1 x 9.25 inches |
| Edition | 3rd |
| ISBN-10 | 0321334876 |
| ISBN-13 | 978-0321334879 |
| Item Weight | 1.4 pounds |
| Language | English |
| Print length | 320 pages |
| Publication date | May 12, 2005 |
| Publisher | Addison-Wesley Professional |
P**.
Excellent Intermediate C++ Book
So... I read alot 1 or 2 star reviews for this book and many mention that Meyers either doesn't go into enough detail or he explains things that are rather obvious to most C++ programmers. I'll tell you a bit of my background and why this book is a goldmine for someone like me: I have a degree in electrical engineering. I did some C++ programming in college but never got to the OOP stuff when I was in school. As I changed jobs over the years eventually I landed in a position where I needed to manage an existing C++ system. I learned the basics of OOP just by doing some reading online and picked it up over the years as most engineers are able to do. I got to the point where I was very familiar with the system and for the most part I could do pretty much everything I needed do for my job. But my only formal training on C++ barely even scratched the surface of its capabilities, so I thought I should read a book on some "good practices" in C++. This book was exactly what I was looking for. Coming in at under 300 pages, and with Meyers listing 55 specific items, this only leaves approximately 5 pages per item. This of course means that this book is not the definitive C++ reference guide. That said, this is not a book for beginners. I would say that you should be practicing OOP within C++ for at least a year before reading this book. (But it probably also isn't a book for experts either, because experts probably already know mostly everything in this book.) Many of the items in this book are structured like this: 1) Meyers shows some snippet of code that looks innocent at first glance. 2) He explains how this could result in disaster if the exact wrong series of events happen (and provides a basic example of how this might unfold). 3) Then he explains how to modify the code to avoid this behavior. (Although, there are some dark corners of C++ that unfortunately can't be completely prevented from happening, even with proper class design. For these, Meyers explains how to minimize these chances of happening.) This structure is very easy to understand and effective for retaining the information in this book. In conclusion, I would recommend this book to anyone who understands the rules/syntax of C++ and has been using it for a few years, but maybe needs some guidance in taming the C++ beast.
L**A
Coming to C++ as a Java programmer, this book is exactly what I needed!
It's quite difficult to find a good book that assumes your familiarity with programming as well as your obliviousness of the language in question. This book happens to be in that rare minority. The importance of the above assumption cannot be disregarded. This book assumes that you have little to no experience of the language. Every Item goes very deep into explanations of the concepts by giving clear (and realistic) examples of the pros and cons of a certain design. The code examples are especially good as they are not fragmented, yet very easy to understand as well as being relatable (if you are already familiar with programming). The structure of the book is what stands out the most to me. Not only that this will forever remain as a great reference-book, if you're new to C++ like myself, and there is a concept that troubles you, this structure gives you a place to jump into and explore that concept, and from there, expand into other Items of concepts and ideas you may not even have considered in the first place. Another added bonus is the decomposition of each Item. Each Item is concise enough to be read in one go, yet all of them provide details in-length of the matter at hand. On top of that, the Items are not extremely dependent on other Items, making them easy to read as well as referencing.
A**R
Best Book Out If You're Looking For An Advanced C++ Style Guide!
In learning programming, different textbooks suit different purposes ... Let's divide up the task of becoming a C++ software engineer specialising in programming challenging systems ... (1) learning the essentials of programming; (2) learning the essentials of low level programming with its bit fiddling logical operators and implementation issues; (3) learning C++ syntax; (4) learning C++ development tools; (5) picking up knowledge of the situational logic of software engineering; (6) picking up knowledge of object oriented and procedural and other approaches to programming solutions to given problems and picking up the common sense to know the best approach to a given problem; (7) learning C++ libraries; (8) learning STL the standard template library; (9) picking up knowledge so that one can develop an appropriate C++ style to the task at hand, whatever the task at hand may be ... knowing that educational miniprojects and real medium sized to large systems have different needs in this respect. In this matter I am trying to distinguish knowledge and skills. I maintain that this book essentially deals with topics (2) (5) (6) (7) and (9) as outlined above, with application to the perculiarities of C++. In other words, this is an advanced work and should not be the first C++ book a first year university student should buy! First things first you need to buy a language primer ... Nevertheless once one has mastered the basics of C++ this is an excellent work to start picking up rules of C++ style. Helpfully the author includes a number of items which describe typical C++ blunders that result from inadequate mastery of the basics of C++. Therefore after learning the basics of C++ most students would benefit by reading this book cover to cover! The explanations are clear and terse and if contemplated will enable many a conceptual misunderstanding of typical C++ semantics in C++ typical implementations to be clarified. From earlier editions some of the advice has changed. There is a helpful table pp277-9 that describes a mapping of relevant items between the 2nd and 3rd editions! That the author has consolidated and clarified his advice on good C++ style is a good thing given how often he is cited in both industry and academia. Some advice has been updated to deal with the C++ 11 standard adopted two years ago; some has been updated to deal with the latest in C++ development technologies and libraries ... Well worth reading even for the experienced programmer. Well worth buying even if you have an earlier edition. I really must find time now to read this properly cover to cover ... as I've read two of his earlier works!
A**O
Excelente livro pra quem está procurando melhorar o seu "c++ programming skills". Livro bem organizado, com excelente dicas e indicado pra quem já tem fluência na linguagem
A**I
This is a must read book for C++ developers. Sometimes we don't know all aspects of a C++ concepts. This will explain every topic in details with recommendation for good practice. Also this must simpler than Stroustrup's C++ book, which is must more philosophical. Maybe after this book one can go for Stroustrup.
A**S
C++を実際に使う上で知っているべきノウハウや避けるべき「落とし穴」が、ほどよい分量によくまとめられていると思います。英語も読みやすく、大事なことは「Things to Remember」に要約されていますので、まだ十分に習得していない部分を見直すときにも便利です。
Ó**R
Este libro es tal cual lo esperaba. En alguna web leía que otros como Stroustroup se ocupan de la legalidad (qué se puede hacer con el lenguaje), y Meyers más bien se centra en la moralidad (qué se debe o no hacer). Sobre la primera parte leí hace mucho, la puse en práctica y ahí se quedó. Ahora tengo un contacto más cercano con el lenguaje, y para ir más allá de escribir programas que compilen, este libro es realmente útil. Más allá de los consejos, la explicación de por qué hacer algo de cierto modo es bueno o malo da lugar a una mejora en la calidad de lo que se escribe. Lo único que hace falta es tiempo para ir asimilando el contenido. Una cosa es admirar la explicación y otra llevarla a la práctica.
A**R
Fantastic book, filled with many pointers (I'm sorry) on writing efficient and maintainable code. It's also small which makes it handy for carrying around and it's straight to the point which makes it awesome for when you're doing a project, you just go to the index and find what you want, read it and you have an exact understanding of what's going on and how to implement it in your own projects.
ترست بايلوت
منذ 3 أيام
منذ يومين