Tags
Language
Tags
May 2025
Su Mo Tu We Th Fr Sa
27 28 29 30 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
    Attention❗ To save your time, in order to download anything on this site, you must be registered 👉 HERE. If you do not have a registration yet, it is better to do it right away. ✌

    ( • )( • ) ( ͡⚆ ͜ʖ ͡⚆ ) (‿ˠ‿)
    SpicyMags.xyz

    Building Maintainable Software, Java Edition: Ten Guidelines for Future-Proof Code (Repost)

    Posted By: roxul
    Building Maintainable Software, Java Edition: Ten Guidelines for Future-Proof Code (Repost)

    Joost Visser, Sylvan Rigal, Rob van der Leek, Pascal van Eck, Gijs Wijnholds , "Building Maintainable Software, Java Edition: Ten Guidelines for Future-Proof Code"
    English | ISBN: 1491953527 | 2016 | PDF/EPUB | 168 pages | 6 MB/4 MB

    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 Java 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 Java, while our companion C# book provides workable 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