Showing posts with label Tutorial. Show all posts
Showing posts with label Tutorial. Show all posts

The C++ Standard Library: A Tutorial and Reference

1
The C++ Standard Library: A Tutorial and Reference

Programming with the C++ Standard Library can certainly be difficult, but Nicolai Josuttis's The C++ Standard Library provides one of the best available guides to using the built-in features of C++ effectively.The C++ Standard Library provides plenty of default functionality in the form of the Standard Template Library (STL) for containers (like vectors and linked lists), as well as generic algorithms (which allow you to sort, search, and manipulate elements inside containers).Each container type is explained along with short code excerpts. Moreover, in a reference section, the author explores the connections between each container type, showing how they share similar methods.Learn just a few methods and you can pretty much work with them all.


Download From

Android Programming with Tutorials from the anddev.org-Community


Android Programming with Tutorials from the anddev.org-Community

This document was written for developers who have worked with Java™ before and want to start developing for the Android Platform. I tried to make this as much “hands on” as possible, placing example codes everywhere it fit. Also I tried to insert as many picture as possible, because they liven up the learning process and relax the reader’s eyes.
But unfortunately coding is not everything; one has to learn about some basic facts of the Android Platform to fully understand. That is what is described on the first ~XXX pages. It is not necessary to read all those describing pages, but it is preferable. You could decide to treat it as a kind of reference. What you would read there is also explained when it occurs during the “hands on”-process. So you could directly start at Hello World – The Android Way.

Download From