Librería Portfolio Librería Portfolio

Búsqueda avanzada

TIENE EN SU CESTA DE LA COMPRA

0 productos

en total 0,00 €

BUILDING MAINTAINABLE SOFTWARE, C# EDITION. TEN GUIDELINES FOR FUTURE-PROOF CODE
Título:
BUILDING MAINTAINABLE SOFTWARE, C# EDITION. TEN GUIDELINES FOR FUTURE-PROOF CODE
Subtítulo:
Autor:
VISSER, J
Editorial:
O´REILLY
Año de edición:
2016
Materia
C# Y .NET
ISBN:
978-1-4919-5452-2
Páginas:
172
25,50 €

 

Sinopsis

Have you ever felt frustrated working with someone else's code? Difficult-to-maintain source code is a big problem in software development today, leading to costly delays and defects. Be part of the solution. With this practical book, you'll learn 10 easy-to-follow guidelines for delivering C# software that's easy to maintain and adapt. These guidelines have been derived from analyzing hundreds of real-world systems.

Written by consultants from the Software Improvement Group (SIG), this book provides clear and concise explanations, with advice for turning the guidelines into practice. Examples for this edition are written in C#, while our companion Java book provides clear examples in that language.

Write short units of code: limit the length of methods and constructors
Write simple units of code: limit the number of branch points per method
Write code once, rather than risk copying buggy code
Keep unit interfaces small by extracting parameters into objects
Separate concerns to avoid building large classes
Couple architecture components loosely
Balance the number and size of top-level components in your code
Keep your codebase as small as possible
Automate tests for your codebase
Write clean code, avoiding ´code smells´ that indicate deeper problems



Chapter 1Introduction
What Is Maintainability?
Why Is Maintainability Important?
Three Principles of the Guidelines in This Book
Misunderstandings About Maintainability
Rating Maintainability
An Overview of the Maintainability Guidelines
Chapter 2Write Short Units of Code
Motivation
How to Apply the Guideline
Common Objections to Writing Short Units
See Also
Chapter 3Write Simple Units of Code
Motivation
How to Apply the Guideline
Common Objections to Writing Simple Units of Code
See Also
Chapter 4Write Code Once
Types of Duplication
Motivation
How to Apply the Guideline
Common Objections to Avoiding Code Duplication
See Also
Chapter 5Keep Unit Interfaces Small
Motivation
How to Apply the Guideline
Common Objections to Keeping Unit Interfaces Small
See Also
Chapter 6Separate Concerns in Modules
Motivation
How to Apply the Guideline
Common Objections to Separating Concerns
Chapter 7Couple Architecture Components Loosely
Motivation
How to Apply the Guideline
Common Objections to Loose Component Coupling
See Also
Chapter 8Keep Architecture Components Balanced
Motivation
How to Apply the Guideline
Common Objections to Balancing Components
See Also
Chapter 9Keep Your Codebase Small
Motivation
How to Apply the Guideline
Common Objections to Keeping the Codebase Small
Chapter 10Automate Tests
Motivation
How to Apply the Guideline
Common Objections to Automating Tests
See Also
Chapter 11Write Clean Code
Leave No Trace
How to Apply the Guideline
Common Objections to Writing Clean Code
Chapter 12Next Steps
Turning the Guidelines into Practice
Lower-Level (Unit) Guidelines Take Precedence Over Higher-Level (Component) Guidelines
Remember That Every Commit Counts
Development Process Best Practices Are Discussed in the Follow-Up Book
Appendix How SIG Measures Maintainability