Prix bas
CHF59.30
Habituellement expédié sous 2 à 4 semaines.
Preface.
1. Organizational and Policy Issues.
Don't sweat the small stuff. (Or: Know what not to standardize.).
Compile cleanly at high warning levels.
Use an automated build system.
Use a version control system.
Invest in code reviews.
2. Design Style.
Give one entity one cohesive responsibility.
Correctness, simplicity, and clarity come first.
Know when and how to code for scalability.
Don't optimize prematurely.
Don't pessimize prematurely.
Minimize global and shared data.
Hide information.
Know when and how to code for concurrency.
Ensure resources are owned by objects. Use explicit RAII and smart pointers.
3. Coding Style.
Prefer compile- and link-time errors to run-time errors.
Use const proactively.
Avoid macros.
Avoid magic numbers.
Declare variables as locally as possible.
Always initialize variables.
Avoid long functions. Avoid deep nesting.
Avoid initialization dependencies across compilation units.
Minimize definitional dependencies. Avoid cyclic dependencies.
Make header files self-sufficient.
Always write internal #include guards. Never write external #include guards.
4. Functions and Operators.
Take parameters appropriately by value, (smart) pointer, or reference.
Preserve natural semantics for overloaded operators.
Prefer the canonical forms of arithmetic and assignment operators.
Prefer the canonical form of ++ and --. Prefer calling the prefix forms.
Consider overloading to avoid implicit type conversions.
Avoid overloading &&, ||, or , (comma).
Don't write code that depends on the order of evaluation of functionarguments.
5. Class Design and Inheritance.
Be clear what kind of class you're writing.
Prefer minimal classes to monolithic classes.
Prefer composition to inheritance.
Avoid inheriting from classes that were not designed to be base classes.
Prefer providing abstract interfaces.
Public inheritance is substitutability.
Inherit, not to reuse, but to be reused.
Practice safe overriding.
Consider making virtual functions nonpublic, and public functions nonvirtual.
Avoid providing implicit conversions.
Make data members private, except in behaviorless aggregates (C-stylestructs).
Don't give away your internals.
Pimpl judiciously.
Prefer writing nonmember nonfriend functions.
Always provide new and delete together.
If you provide any class-specific new, provide all of the standard forms (plain, in-place, and nothrow).
6. Construction, Destruction, and Copying.
Define and initialize member variables in the same order.
Prefer initialization to assignment in constructors.
Avoid calling virtual functions in constructors and destructors.
M...
Auteur
Herb Sutter is the author of three highly acclaimed books, Exceptional C++ Style, Exceptional C++, and More Exceptional C++ (Addison-Wesley). He chairs the ISO C++ standards committee, and is contributing editor and columnist for C/C++ Users Journal. As a software architect for Microsoft, Sutter leads the design of C++ language extensions for .NET programming.
Andrei Alexandrescu is the author of the award-winning book Modern C++ Design (Addison-Wesley, 2001) and is a columnist for C/C++ Users Journal.
Texte du rabat
Every software development team should have and follow a coding standard.It's even better when what the coding standard requires is actually consistent,reasonable, and correct.Coding standards have many advantages:*They improve code quality. This happens automatically when following agood, simple set of guidelines.*They improve development speed, because the programmer doesn't need toalways make decisions starting from first principles.*They enhance teamwork by eliminating needless debates on inconsequentialissues and by making it easy for teammates to read and maintain each other'scode.The coding standards introduced by this book are a collection of guidelines forwriting high-quality C++ code.***They are the distilled conclusions of a rich collective experience of the C++community. Until now, this body of knowledge has been available only asfolklore or spread in bits and pieces throughout books.
Résumé
Covering the facets of C++ programming, this book discusses: design and coding style, functions, operators, class design, inheritance, construction/destruction, copying, assignment, namespaces, modules, templates, genericity, exceptions, and STL containers and algorithms. Each standard is described concisely, with practical examples.
Contenu
Preface.
1. Organizational and Policy Issues.
Don't sweat the small stuff. (Or: Know what not to standardize.).
Compile cleanly at high warning levels.
Use an automated build system.
Use a version control system.
Invest in code reviews.
2. Design Style.
Give one entity one cohesive responsibility.
Correctness, simplicity, and clarity come first.
Know when and how to code for scalability.
Don't optimize prematurely.
Don't pessimize prematurely.
Minimize global and shared data.
Hide information.
Know when and how to code for concurrency.
Ensure resources are owned by objects. Use explicit RAII and smart pointers.
3. Coding Style.
Prefer compile- and link-time errors to run-time errors.
Use const proactively.
Avoid macros.
Avoid magic numbers.
Declare variables as locally as possible.
Always initialize variables.
Avoid long functions. Avoid deep nesting.
Avoid initialization dependencies across compilation units.
Minimize definitional dependencies. Avoid cyclic dependencies.
Make header files self-sufficient.
Always write internal #include guards. Never write external #include guards.
4. Functions and Operators.
Take parameters appropriately by value, (smart) pointer, or reference.
Preserve natural semantics for overloaded operators.
Prefer the canonical forms of arithmetic and assignment operators.
Prefer the canonical form of ++ and --. Prefer calling the prefix forms.
Consider overloading to avoid implicit type conversions.
Avoid overloading &&, ||, or , (comma).
Don't write code that depends on the order of evaluation of functionarguments.
**5. Class Design and I…