null
Loading... Please wait...
FREE SHIPPING on All Unbranded Items LEARN MORE
Print This Page

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

List Price: $24.99
SKU:
9781491953525
Quantity:
Minimum Purchase
25 unit(s)
  • Availability: Confirm prior to ordering
  • Branding: minimum 50 pieces (add’l costs below)
  • Check Freight Rates (branded products only)

Branding Options (v), Availability & Lead Times

  • 1-Color Imprint: $2.00 ea.
  • Promo-Page Insert: $2.50 ea. (full-color printed, single-sided page)
  • Belly-Band Wrap: $2.50 ea. (full-color printed)
  • Set-Up Charge: $45 per decoration
FULL DETAILS
  • Availability: Product availability changes daily, so please confirm your quantity is available prior to placing an order.
  • Branded Products: allow 10 business days from proof approval for production. Branding options may be limited or unavailable based on product design or cover artwork.
  • Unbranded Products: allow 3-5 business days for shipping. All Unbranded items receive FREE ground shipping in the US. Inquire for international shipping.
  • RETURNS/CANCELLATIONS: All orders, branded or unbranded, are NON-CANCELLABLE and NON-RETURNABLE once a purchase order has been received.
  • Product Details

    Author:
    Joost Visser, Sylvan Rigal, Rob van der Leek, Pascal van Eck, Gijs Wijnholds
    Format:
    Paperback
    Pages:
    166
    Publisher:
    O'Reilly Media (March 15, 2016)
    Language:
    English
    ISBN-13:
    9781491953525
    ISBN-10:
    1491953527
    Dimensions:
    7" x 9.19"
    File:
    TWO RIVERS-PERSEUS-Metadata_Only_Perseus_Distribution_Customer_Group_Metadata_20251022163324-20251022.xml
    Folder:
    TWO RIVERS
    List Price:
    $24.99
    As low as:
    $21.49
    Publisher Identifier:
    P-PER
    Discount Code:
    C
    Case Pack:
    24
    Country of Origin:
    United States
    Pub Discount:
    60
    Weight:
    9.76oz
    Imprint:
    O'Reilly Media
  • Overview

    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