

The C++ Programming Language -
- Format: Beau livre
- 1347 pages Voir le descriptif
Vous en avez un à vendre ?
Vendez-le-vôtreChargement...
Brand new, In English, Fast shipping from London, UK; Tout neuf, en anglais, expédition rapide depuis Londres, Royaume-Uni;ria9780321958327_dbm
- Payez directement sur Rakuten (CB, PayPal, 4xCB...)
- Récupérez le produit directement chez le vendeur
- Rakuten vous rembourse en cas de problème
Gratuit et sans engagement
Félicitations !
Nous sommes heureux de vous compter parmi nos membres du Club Rakuten !
TROUVER UN MAGASIN
Retour

Avis sur The C++ Programming Language Format Beau livre - Livre Informatique
0 avis sur The C++ Programming Language Format Beau livre - Livre Informatique
Donnez votre avis et cumulez 5
Les avis publiés font l'objet d'un contrôle automatisé de Rakuten.
-
Eléments De Théorie Des Automates
3 avis
Occasion dès 139,92 €
-
Electrotechnique
Neuf dès 60,00 €
Occasion dès 54,01 €
-
Analyse Et Régulation Des Processus Industriels - Tome 1, Régulation Continue
1 avis
Occasion dès 79,99 €
-
Final Fantasy Vii : Crisis Core - Le Guide Officiel
12 avis
Occasion dès 54,54 €
-
Electrotechnique - 3ème Édition
Occasion dès 60,00 €
-
L'électronique En Pratique - Tome 2
Occasion dès 127,69 €
-
Compilateurs - Principes, Techniques Et Outils
1 avis
Occasion dès 139,92 €
-
Le Grand Livre Du Ms Dos 6.0
Occasion dès 55,50 €
-
Entraînements Électriques - Tome 1, Alimentations Des Machines Électriques Principe De La Conversion Électromécanique
Occasion dès 59,74 €
-
Tout L'art De Death Stranding
1 avis
Occasion dès 69,90 €
-
Comptabilite Electromagnetique - Bruits Et Perturbations Radiologiques
1 avis
Occasion dès 68,11 €
-
Légende Kingdom Hearts (La) - Tome 1 : Création - Le Royaume Du Coeur
1 avis
Occasion dès 90,00 €
-
Ethique Des Algorithmes Et De L'intelligence Artificielle
Occasion dès 70,99 €
-
The Elder Scrolls V, Skyrim - Peuples Et Créatures
6 avis
Occasion dès 73,70 €
-
Solidworks - Le Manuel De Référence
1 avis
Neuf dès 59,00 €
Occasion dès 52,71 €
-
Dungeons Et Dragons Pour Les Nuls
1 avis
Occasion dès 54,50 €
-
Introduction À L'algorithmique - 2ème Édition
5 avis
Occasion dès 90,00 €
-
Leçons Sur L'informatique
Occasion dès 54,53 €
-
Le Bim Pour Les Nuls
Occasion dès 60,00 €
-
Traite De L'electronique Analogique Et Numerique - Volume 2, Techniques Numériques Et Analogiques
1 avis
Occasion dès 80,57 €
Produits similaires
Présentation The C++ Programming Language Format Beau livre
- Livre InformatiqueParution : 01/01/2014Format : Moyen, de 350g à 1kgNombre de pages : 1347Nombre de livres : 1Expédition : 1920Dimensions : 23.5 x 19.5 x 4.5 Résumé :The new...
Résumé :
The new C++11 standard allows programmers to express ideas more clearly, simply, and directly, and to write faster, more efficient code. Bjarne Stroustrup, the designer and original implementer of C++, has reorganized, extended, and completely rewritten his definitive reference and tutorial for programmers who want to use C++ most effectively. The C++ Programming Language, Fourth Edition, delivers meticulous, richly explained, and integrated coverage of the entire language?its facilities, abstraction mechanisms, standard libraries, and key design techniques. Throughout, Stroustrup presents concise, "pure C++11" examples, which have been carefully crafted to clarify both usage and program design. To promote deeper understanding, the author provides extensive cross-references, both within the book and to the ISO standard. New C++11 coverage includes : Support for concurrency . Regular expressions, resource management pointers, random numbers, and improved containers . General and uniform initialization, simplified for-statements, move semantics, and Unicode support . Lambdas, general constant expressions, control over class defaults, variadic templates, template aliases, and user-defined literals . Compatibility issues. Topics addressed in this comprehensive book include : Basic facilities : type, object, scope, storage, computation fundarnentals, and more . Modularity, as supported by namespaces, source files, and exception handling . C++ abstraction, including classes, class hierarchies, and templates in support of a synthesis of traditional programming, object-oriented programming, and generic programming . Standard Library : containers, algorithms, iterators, utilities, strings, stream I/0, locales, numerics, and more . The C++ basic memory model, in depth. This fourth edition makes C++11 thoroughly accessible to programmers moving from C++98 or other languages, while introducing insights and techniques that even cutting-edge C++11 programmers will find indispensable.
Biographie:
Bjarne Stroustrup is the designer and original implementer of C++, as well as the author of Programming : Principles and Practice Using C++, The C++ Programming Language, and Many other popular and academic publications. Or. Stroustrup is a University Distinguished Professor at Texas ABM University and the holder of the College of Engineering Chair in Computer Science. He is a member of the U.S. National Academy of Engineering, an IEEE Fellow, and an ACM Fellow. He is actively involved in the ISO standardization of C++.
Sommaire:
Preface to the Fourth Edition v Preface to the Third Edition ix Preface to the Second Edition xi Preface to the First Edition xii Part I: Introductory Material 1 Chapter 1: Notes to the Reader 3 Chapter 2: A Tour of C++: The Basics 37 Chapter 3: A Tour of C++: Abstraction Mechanisms 59 Chapter 4: A Tour of C++: Containers and Algorithms 87 Chapter 5: A Tour of C++: Concurrency and Utilities 111 Part II: Basic Facilities 133 Chapter 6: Types and Declarations 135 Chapter 7: Pointers, Arrays, and References 171 Chapter 8: Structures, Unions, and Enumerations 201 Chapter 9: Statements 225 Chapter 10: Expressions 241 Chapter 11: Select Operations 273 Chapter 12: Functions 305 Chapter 13: Exception Handling 343 Chapter 14: Namespaces 389 Chapter 15: Source Files and Programs 419 Part III: Abstraction Mechanisms 447 Chapter 16: Classes 449 Chapter 17: Construction, Cleanup, Copy, and Move 481 Chapter 18: Overloading 527 Chapter 19: Special Operators 549 Chapter 20: Derived Classes 577 Chapter 21: Class Hierarchies 613 Chapter 22: Run-Time Type Information 641 Chapter 23: Templates 665 Chapter 24: Generic Programming 699 Chapter 25: Specialization 721 Chapter 26: Instantiation 741 Chapter 27: Templates and Hierarchies 759 Chapter 28: Metaprogramming 779 Chapter 29: A Matrix Design 827 Part IV: The Standard Library 857 Chapter 30: Standard Library Summary 859 Chapter 31: STL Containers 885 Chapter 32: STL Algorithms 927 Chapter 33: STL Iterators 953 Chapter 34: Memory and Resources 973 Chapter 35: Utilities 1009 Chapter 36: Strings 1033 Chapter 37: Regular Expressions 1051 Chapter 38: I/O Streams 1073 Chapter 39: Locales 1109 Chapter 40: Numerics 1159 Chapter 41: Concurrency 1191 Chapter 42: Threads and Tasks 1209 Chapter 43: The C Standard Library 1253 Chapter 44: Compatibility 1267 Index 1281
©
Détails de conformité du produit
Personne responsable dans l'UE