Get Free Ebook The Object-Oriented Thought Process (4th Edition) (Developer's Library)
Book features the new info and lesson each time you read it. By reviewing the content of this publication, also few, you can acquire just what makes you feel pleased. Yeah, the discussion of the expertise by reviewing it might be so small, however the influence will certainly be so great. You could take it more times to understand even more about this book. When you have actually completed material of The Object-Oriented Thought Process (4th Edition) (Developer's Library), you can actually understand just how significance of a publication, whatever the book is
The Object-Oriented Thought Process (4th Edition) (Developer's Library)
Get Free Ebook The Object-Oriented Thought Process (4th Edition) (Developer's Library)
Have you noted what should you obtain today? Is there any strategy and also suggestion to get the brand-new collection of book? Well, if you have not that kind of strategy, we will certainly influence you and also make certain you to take it in listed. Publication is much recommended to be constantly in list for you. It is kind of daily need. So, when you allot much cash for other necessities, you likewise have to set aside some loan to purchase the book.
Now, your time is to develop the different environment of your every day life. You may not really feel that it will certainly be so peaceful to understand that this publication is absolutely yours. As well as exactly how you could wait for guide to review, you can just locate the link that has actually been supplied in this website. This website will offer you all soft copy fie of the book that can be so easy to learn more about. Associated with this condition, you could truly realize that the book is connected always with the life as well as future.
Reading will not only satisfy your time openly. It will certainly give the ways as well as lots of points that can be done when reading. Getting the realities, amusement, lesson, and expertise can be gotten to easier by reviewing guide. You could not only should spare you time for your friend or family. Occasionally, spending few times for analysis will be additionally precious.
And also now, your possibility is to obtain this publication as soon as possible. By seeing this web page, you can in the connect to go straight to guide. And also, get it to become one part of this newest publication. To make certain, this publication is truly recommended for analysis. Whether you are not followers of the author or the topic with this publication, there is no mistake to review it. The Object-Oriented Thought Process (4th Edition) (Developer's Library) will be really ideal to check out currently.
About the Author
Matt Weisfeld is a college professor, software developer, and author based in Cleveland, Ohio. Prior to teaching college full time, he spent 20 years in the information technology industry as a software developer, entrepreneur, and adjunct professor. Weisfeld holds an MS in computer science and an MBA. Besides the first three editions of The Object-Oriented Thought Process, he has authored two other software development books and published many articles in magazines and journals, such as developer.com, Dr. Dobb’s Journal, The C/C++ Users Journal, Software Development Magazine, Java Report, and the international journal Project Management.
Read more
Product details
Series: Developer's Library
Paperback: 336 pages
Publisher: Addison-Wesley Professional; 4 edition (March 23, 2013)
Language: English
ISBN-10: 9780321861276
ISBN-13: 978-0321861276
ASIN: 0321861272
Product Dimensions:
6.9 x 0.7 x 8.9 inches
Shipping Weight: 1.2 pounds (View shipping rates and policies)
Average Customer Review:
3.8 out of 5 stars
72 customer reviews
Amazon Best Sellers Rank:
#431,374 in Books (See Top 100 in Books)
The best audience for this book is a programmer who approaches coding procedurally and needs to be led in the direction of thinking object oriented. In fact, a number of chapters are flat out some of the best and clearest introductory material I've read on OOP. Some of the middle chapters of the book are just rearranged words saying the same thing in circles. You'll read it thinking something new will come of it, but it doesn't. The latter part of the book are misc chapters giving a short overview or discussion of things like UML, XML, JSON, Serialization, Marshaling, Web Services, and Design Patterns, and some of that is new in this fourth edition. These range from laughably cursory to excellent at times. Much of that material is obviously for beginners. The chapter on design patterns is probably the best introduction on the subject I've read, but it does suffer from the same problems as the rest of the book, as I'll note below.If you read the third edition, the same errors are there in this fourth. The editing problems are disappointing. Like on page 223 he says, "By now you should realize that this is an actual application...The fact that the code has a main method in it is a sure tip." OK, well, the code doesn't have a main method. It leaves you wondering, "What planet am I on, did I miss something?" Another example: At the end of chapters it seems like he inserts the wrong portions or odd choices of code. Just really inconsistent stuff like that. And then there are things like sentences from previous paragraphs that reappear again almost word for word. Not to mention things like sentences from previous paragraphs that seem to appear again almost word for word.I was tempted to give this book three stars because some of it is repetitious or pointless and especially because of the editing issues. Despite its generous portions of brilliance, I just didn't think the author should be rewarded for putting so little care into it as a whole, especially for what you would expect by a fourth rewrite! But I'll tell you, a lot of chapters are really excellent for the right audience. Also on the positive side, the code examples are very clear and to the point. While ideas are usually introduced with java samples, he also includes C# code and gives nice context to C++. It would be nice if the coding in the book was more practical, but it's usually the "model the world" kind of stuff which doesn't help you learn how object-oriented thinking applies to real coding.I should note that practically every chapter references "Object Oriented Design in Java" by Gilbert and McCarty, published in 1998. That book obviously really influenced the author's life.
The first chapter is profoundly enlightening. There is a reason I like to buy books on programming concepts rather than exclusively relying on the blogosphere. I spent a week at work trying to understand our legacy codebase and after reading the first chapter of this book I immediately starting to understand our codebase with much more clarity and fixed the issue we were dealing with very quickly. I also began to immediately see many ways in which the way things are currently implemented aren't correct and create more problems than help.---- UpdateI finished reading this book and all I can say is great things about it. The author understands the subject AND the reader so well that he nearly 100% of the time know exactly when to explain things a little more or less. My code has become so much cleaner as a result of reading this and my understanding of design patterns is much much better now. This was the foundational knowledge I was looking for that would tie together so many ideas like SOLID programming, separation of concerns, and as mentioned design patterns. I read this book in about 2 weeks because it was written in a language that makes it easy to absorb and fly through. I think I was ready for this knowledge as well after having written tons of programs without this solid background 'theory'.
I am back in school working on another degree in IT, so have to do some programming. I've had classes in a few scripting and programming languages, but don't work as a developer, so my programming skills are still "novice". I bought this book after a recommendation from a fellow classmate, and read it to supplement and review textbook Java programming coursework. For an experienced object-oriented programmer this is probably too basic of a book, but for a student or someone new to programming, the information here is clear and explanatory. Even if someone were looking at programming as a possible career, reading this book to get an idea if you can even get some basic OO concepts could be useful.
This is a great book for those who have never programmed or never got any formal education on object oriented programming. I was a MIS major and have pretty much been a SQL DBA straight out of college, so my skillset mainly revolved around T-SQL with some scripting knowledge in PowerShell. This book does a great job of breaking things down and using real world examples for explaining things such as Classes, Public and Private Types, Interfaces, Inheritance, and Polymorphism in layman's terms. It also goes into explaining the differences between "Structured" vs "Object" programming.If you ever read a beginner's book for any language and got lost whenever concepts such as instantiation, public/private classes/methods, why namespaces/libraries are named the way they are, how to access methods, etc. then this book is for you. I really enjoyed how it breaks down classes and explains best practices for determining what should be available on the interface. After reading this, I feel I can look at existing classes and know right away what it's trying to do. The author even does a nice job of explaining some of the history behind languages and the paradigm shift to object orientation programming. Overall, if you ever read tutorials or books regarding programming and wondered "why" things were written the way they were then this book does a good job of answering most of that.
The Object-Oriented Thought Process (4th Edition) (Developer's Library) PDF
The Object-Oriented Thought Process (4th Edition) (Developer's Library) EPub
The Object-Oriented Thought Process (4th Edition) (Developer's Library) Doc
The Object-Oriented Thought Process (4th Edition) (Developer's Library) iBooks
The Object-Oriented Thought Process (4th Edition) (Developer's Library) rtf
The Object-Oriented Thought Process (4th Edition) (Developer's Library) Mobipocket
The Object-Oriented Thought Process (4th Edition) (Developer's Library) Kindle
0 komentar:
Posting Komentar