The C Plus Plus Programming Language
In this book, Stroustrup dissects many of these decisions to present a case study in "real object- oriented language development" for the working programmer.
This approach gives students a solid foundation for writing useful, correct, maintainable, and efficient code. This book is an introduction to programming in general, including object-oriented programming and generic programming.
Bjarne Stroustrup. complex z = 1; // a complex number with double-precision floating-point scalars complex z2 {d1,d2}; complexz3 = {1,2}; // the = is optional with {... } vectorv {1,2,3,4,5,6}; // a vector ...
The main mission of this book is to make you familiar and comfortable with C++. You will finish the book not only being able to write your own code, but more importantly, you will be able to read other projects.
A fast-paced, thorough introduction to modern C++ written for experienced programmers. After reading C++ Crash Course, you'll be proficient in the core language concepts, the C++ Standard Library, and the Boost Libraries.
With this book, you can learn C++ in just one day and start coding immediately. How is this book different... The best way to learn C++ programming is by doing. This book includes a unique examples.
This edition covers many features that are new in C++20 as implemented by major C++ suppliers, including modules, concepts, coroutines, and ranges.
Practical C++ Programming thoroughly covers: C++ syntax · Coding standards and style · Creation and use of object classes · Templates · Debugging and optimization · Use of the C++ preprocessor · File input/output
Eine systematische und ausführliche Beschreibung des Entwurfs von C ++ findet sich in [ Stroustrup , 1994 ] . 1.3.1 Effizienz und Struktur Die Entwicklung von C ++ startete mit der Programmiersprache C als Basis . Deshalb ist C bis auf ...