Minggu, 10 Januari 2016

Download The C++ Programming Language, 4th Edition

Download The C++ Programming Language, 4th Edition

Well, now let's see just how guide will certainly exist for you. The C++ Programming Language, 4th Edition is the one that could affect you to have far better time to relax. So, exactly what you enter the spare time is not just loosening up but additionally extra expertise. Understanding and also experience are very deserving and also they will be timeless. The existence of this book can sustain you to have that ageless worth. Extremely precious and also valuable are what you could likewise get from reading this publication.

The C++ Programming Language, 4th Edition

The C++ Programming Language, 4th Edition


The C++ Programming Language, 4th Edition


Download The C++ Programming Language, 4th Edition

When someone reads a book in a shelter or in waiting list place, just what will you think about her or him? Do you feel that they are kind of egotistic individuals who do not care of the place about? In fact, people that read any place they are might not seem so, but they could come to be the focal point. However, exactly what they imply sometimes will not as like just what we thought.

Reading comes to be on part of the life that ought to be done by everybody. Reviewing need to be believed from earlier to be routine and pastime. Even there are lots of people with alternative leisure activities; it doesn't mean that you could not delight in checking out as various other task. Reviewing The C++ Programming Language, 4th Edition is just one of the ways for you to boost your high quality of the life. It is such assumed in the many resources.

Based upon the exactly how this publication will certainly interest in, it is truly mentioned that this book readies and appropriate for you. When you have no sufficient time to finish reading this book asap, you can begin to read it from currently. Yeah, also it must not remain in fast time, you can take opportunity of couple of spare time or in your leisures to read. Also little by little, the The C++ Programming Language, 4th Edition contents can be accomplished as well as leant.

By beginning to read this book as soon as possible, you could easily discover the proper way making far better top qualities. Utilize your downtime to read this publication; also by web pages you could take extra lessons and also motivations. It will not limit you in some events. It will certainly release you to always be with this book each time you will certainly review it. The C++ Programming Language, 4th Edition is currently available here and also be the first to get it currently.

The C++ Programming Language, 4th Edition

About the Author

Bjarne Stroustrup is the designer and original implementer of C++ and the author of Programming: Principles and Practice Using C++, 2nd Edition and The C++ Programming Language, among others. Having previously worked at Bell Labs, AT&T Labs - Research, and Texas A&M University, he is currently Managing Director in the technology division of Morgan Stanley in New York City. The recipient of numerous honors, including The National Academy of Engineering 2018 Charles Stark Draper Prize for Engineering “for conceptualizing and developing the C++ programming language, Dr. Stroustrup is a member of the National Academy of Engineering, an AT&T Fellow, an AT&T Bell Laboratories Fellow, an IEEE Fellow, and an ACM Fellow. He was voted into Electronic Design's Engineering Hall of Fame in 2013. His research interests include distributed systems, simulation, design, programming techniques, software development tools, and programming languages, and he remains actively involved in the ANSI/ISO standardization of C++. Dr. Stroustrup holds an advanced degree from the University of Aarhus in his native Denmark and a Ph.D. in Computer Science from Cambridge University, England.

Read more

Product details

Paperback: 1376 pages

Publisher: Addison-Wesley Professional; 4 edition (May 19, 2013)

Language: English

ISBN-10: 0321563840

ISBN-13: 978-0321563842

Product Dimensions:

7.4 x 1.7 x 9.1 inches

Shipping Weight: 3.9 pounds (View shipping rates and policies)

Average Customer Review:

4.3 out of 5 stars

273 customer reviews

Amazon Best Sellers Rank:

#19,968 in Books (See Top 100 in Books)

This is a nice reference book on C++.If I were new to C++, I would not start learning C++ with this book. Rather, I would use these below three steps and the relevant books in this order:1. Accelerated C++ by Andrew Koenig & Barbara Moo -- Read and practice example code and exercises from this book first.2. Programming: Principles and Practice Using C++ (2nd Edition) by Bjarne Stroustrup -- Chapters 5,6, and 7 are gems in this book. You can in fact use this book in parallel with the Accelerated C++ book and3. (a) The C++ Programming Language (4th Edition) by Bjarne Stroustrup, -- Definite reference book to have.3. (b) The C++ Standard Library: A Tutorial and Reference (2nd Edition) by Nicolai M. Josuttis, -- Clear examples and very methodical3. (c) C++ Templates: The Complete Guide by David Vandevoorde -- What can I say! This is simply a classic.C++ is not a race. It is a marathon. So, enjoy learning and also make use of many many C++ resources online.

Once you get past the obligatory introduction, this book is pretty much broken down into three sections (there are actually four in the book, but two of them are related, IMO). The first section (Chapters 2-5) is a crash course on C++... what Mr. Stroustrup calls "a tour of C++." *IF* you are already a seasoned programmer--and I'm talking about years of structured development in a professional environment--then this first section will bring you up-to-speed with C++ in minimal time. Knowing C at the start helps, as the basic syntax, operators, statements, etc are common to both languages, but it is not a necessity. The language with which you're familiar isn't as important as having a sufficient background and experience. I personally found this first section invaluable, as it allowed me to "learn" C++ in one weekend... at least to a point where I could pass two separate C++ assessments the following week and land job interviews because of it. [I have 24 years of C experience under my belt but am brand new to C++.] However, if you don't have the necessary background before beginning, this section will get you lost real fast, and will end up discouraging you more than helping you! You have been duly warned.The next section (Chapters 6-29) is SUPPOSED to be a structured tutorial section, starting at square one; however, it is anything but! This section assumes you have read--and more importantly, thoroughly understand--the "tour" provided in the first section. This second section, unfortunately, ends up being more "lawyer speak" on C++ than an actual tutorial (IMHO). Now granted, you need to know the rules in order to create valid C++ programs; but come on! There's got to be a better way to present the subject matter than simply throwing a bunch of obscure rules at the reader. In addition to the "lawyer speak", I also found this section a little too "preachy" for my taste at times. However, in spite of my criticisms, I found this section to be the ultimate supplement to Lippman's "C++ Primer (5th ed)"; i.e. after reading Chapters 2-5, I used Lippman's book as a formal tutorial then came back to this section to take my skills and knowledge to the next level. Mr. Stroustrap divides this 2nd section into two parts, The Basics (types, pointers, functions, etc) and Abstraction Mechanisms (classes, constructors, hierarchies, templates, etc).The final section (Chapters 30-44) examines the Standard Library. The Standard Library is just as important and integral a part of the C++ language as the language itself, akin to the C Standard Library but much more far-reaching. I remember reading somewhere (perhaps it was even this book) that the library description takes up 2/3 of the official C++ specification! The fact that the library is part of the C++ specification implies that its contents are fully supported, and hence presumably the most efficient implementations available... to a degree. [Meaning that the most efficient "general" solution is not necessarily the best solution for one's particular application.] Understanding what's available in the Standard Library and how to utilize it is obviously an important aspect of the language, and this last section is a valuable reference; but that's all it is (i.e. a reference vs a tutorial). Fortunately, several hard examples of the Standard Library are used throughout the earlier portions of the text, but it only scratches the surface.Mr. Stroustrap created C++, so it shouldn't come as a surprise to anyone when I say that this is the definitive book on the subject. However, it is not necessarily the best book from which to learn C++. That said, I found the "crash course" in Chapters 2-5 invaluable, and I am grateful that he included it.So, in summary, if you want to start from scratch and take a traditional structured approach to learning C++, I would suggest you seek an alternative book. The Lippman book I mentioned earlier is great, and I've seen lots of rave reviews about another of Mr. Stroustrup's books, "Programming: Principles and Practice Using C++ (2nd ed)"If you're an experienced professional who needs to come up to speed with C++ in minimal time, then Chapters 2-5 are a good way to do it; but you might want to investigate Mr. Stroustrup's other book instead, "A Tour of C++". [Note, I have not read that book and cannot comment on its contents, but I assume it's a more detailed & structured version of Chapters 2-5 in this book.]In both cases, beginner or professional, this book is THE ultimate reference source for all things C++.Good luck in your C++ journey!

Stroupstrup is a master educator. This book communicates a lot of complex details clearly and memorably. I can only find fault with the size of the book -- the first C++ Programming Language book was, if memory serves, a much slimmer volume. That smaller book was my go-to reference back in the early 90s. C++ has grown a lot since then, but this latest version of the book is logically and seamlessly organized, mixing the old C/C++ world with the much-improved C++11 language. For those who don't have this kind of historical context to help, Stroustrup mixes in some advice on use of older language features that have been improved upon (such as raw pointers versus standard smart pointer wrappers).If you are doing modern C++ development, you need this book. The clarity of the descriptions and the completeness of coverage of what has become a vast language (when you include all the standard library features) will save you time, and inspire you to write clear, concise, elegant code.

The only C++ reference that is worth considering.If you are a C++ programmer, you need this book as a reference in order to understand the language and the intent behind some of the features (especially the new C++11).I don't think this book is a starting point for beginners that want to learn the language. Who want to read 1000+ book when they just want to get started. I got put off by the 3rd edition when I started programming C++ and came back to it later. Use "A Tour of C++" from the same author to get the gist of the language and come back to this book once you are more experienced with the language. I also found the 4th edition to be clearer and better presented than the previous edition.Finally, I will restate an advice I found useful from the C++ isofaq, whatever language you want to learn, there is 3 types of books you must have:- 1 reference book to present you what is legal in the language- 1 advice/rule book to present you what is moral in the language- 1 example bookIn my opinion the definitive C++ reference book is Bjarne book. You may not need it now but you will come back to it once you matured in the language, and when you really want to understand the feature you are using.

If you want to learn C++ quickly, or just want to cover the main language functions, this isn't the book for you. On the other hand, if your goal is to become a C++ master - and take the time involved getting there - this is the book for you. It's a long read and a very technical read, and covers every language facet from the basic to the esoteric in great detail. Of course, written by the father of C++ himself.

The C++ Programming Language, 4th Edition PDF
The C++ Programming Language, 4th Edition EPub
The C++ Programming Language, 4th Edition Doc
The C++ Programming Language, 4th Edition iBooks
The C++ Programming Language, 4th Edition rtf
The C++ Programming Language, 4th Edition Mobipocket
The C++ Programming Language, 4th Edition Kindle

The C++ Programming Language, 4th Edition PDF

The C++ Programming Language, 4th Edition PDF

The C++ Programming Language, 4th Edition PDF
The C++ Programming Language, 4th Edition PDF

0 komentar:

Posting Komentar