|Eingestellt in Kategorie:

Clean Code: Ein Handbuch agiler Software-Handwerkskunst von Robert Martin -

Ursprünglicher Text
Clean Code: A Handbook of Agile Software Craftsmanship by Robert Martin
tangledupinbooks
(1133)
Angemeldet als privater Verkäufer
Verbraucherschützende Vorschriften, die sich aus dem EU-Verbraucherrecht ergeben, finden daher keine Anwendung. Der eBay-Käuferschutz gilt dennoch für die meisten Käufe. Mehr erfahren
US $19,99
Ca.EUR 17,17
oder Preisvorschlag
Artikelzustand:
Gut
Good Condition
Versand:
US $5,22 (ca. EUR 4,48) USPS Media MailTM.
Standort: Los Angeles, California, USA
Lieferung:
Lieferung zwischen Mo, 21. Jul und Do, 24. Jul nach 94104 bei heutigem Zahlungseingang
Wir wenden ein spezielles Verfahren zur Einschätzung des Liefertermins an – in diese Schätzung fließen Faktoren wie die Entfernung des Käufers zum Artikelstandort, der gewählte Versandservice, die bisher versandten Artikel des Verkäufers und weitere ein. Insbesondere während saisonaler Spitzenzeiten können die Lieferzeiten abweichen.
Rücknahme:
Keine Rücknahme.
Zahlungen:
   Diners Club 

Sicher einkaufen

eBay-Käuferschutz
Geld zurück, wenn etwas mit diesem Artikel nicht stimmt. Mehr erfahreneBay-Käuferschutz - wird in neuem Fenster oder Tab geöffnet

  • Gratis Rückversand im Inland
  • Punkte für jeden Kauf und Verkauf
  • Exklusive Plus-Deals
Der Verkäufer ist für dieses Angebot verantwortlich.
eBay-Artikelnr.:205605156639

Artikelmerkmale

Artikelzustand
Gut
Buch, das gelesen wurde, sich aber in einem guten Zustand befindet. Der Einband weist nur sehr geringfügige Beschädigungen auf, wie z.B. kleinere Schrammen, er hat aber weder Löcher, noch ist er eingerissen. Bei gebundenen Büchern ist der Schutzumschlag möglicherweise nicht mehr vorhanden. Die Bindung weist geringfügige Gebrauchsspuren auf. Die Mehrzahl der Seiten ist unbeschädigt, das heißt, es gibt kaum Knitter oder Einrisse, es wurden nur in geringem Maße Bleistiftunterstreichungen im Text vorgenommen, es gibt keine Textmarkierungen und die Randbereiche sind nicht beschrieben. Alle Seiten sind vollständig vorhanden. Genauere Einzelheiten sowie eine Beschreibung eventueller Mängel entnehmen Sie bitte dem Angebot des Verkäufers. Alle Zustandsdefinitionen aufrufenwird in neuem Fenster oder Tab geöffnet
Hinweise des Verkäufers
“Good Condition”
Pages
464
Publication Date
2008-08-01
Book Title
Clean Code: A Handbook of Agile Software Craftsmanship
ISBN
9780132350884

Über dieses Produkt

Product Information

Even bad code can function. But if code isn't clean, it can bring a development organization to its knees. Every year, countless hours and significant resources are lost because of poorly written code. But it doesn't have to be that way. Noted software expert Robert C. Martin presents a revolutionary paradigm with Clean Code: A Handbook of Agile Software Craftsmanship . Martin has teamed up with his colleagues from Object Mentor to distill their best agile practice of cleaning code "on the fly" into a book that will instill within you the values of a software craftsman and make you a better programmer--but only if you work at it. What kind of work will you be doing? You'll be reading code--lots of code. And you will be challenged to think about what's right about that code, and what's wrong with it. More importantly, you will be challenged to reassess your professional values and your commitment to your craft. Clean Code is divided into three parts. The first describes the principles, patterns, and practices of writing clean code. The second part consists of several case studies of increasing complexity. Each case study is an exercise in cleaning up code--of transforming a code base that has some problems into one that is sound and efficient. The third part is the payoff: a single chapter containing a list of heuristics and "smells" gathered while creating the case studies. The result is a knowledge base that describes the way we think when we write, read, and clean code. Readers will come away from this book understanding How to tell the difference between good and bad code How to write good code and how to transform bad code into good code How to create good names, good functions, good objects, and good classes How to format code for maximum readability How to implement complete error handling without obscuring code logic How to unit test and practice test-driven development This book is a must for any developer, software engineer, project manager, team lead, or systems analyst with an interest in producing better code.

Product Identifiers

Publisher
Pearson Education, Prentice Hall PTR
ISBN-10
0132350882
ISBN-13
9780132350884
eBay Product ID (ePID)
66166081

Product Key Features

Number of Pages
464 Pages
Publication Name
Clean Code : a Handbook of Agile Software Craftsmanship
Language
English
Subject
Software Development & Engineering / Quality Assurance & Testing, Software Development & Engineering / General, Information Theory
Publication Year
2008
Type
Textbook
Subject Area
Computers
Author
Robert Martin
Series
Robert C. Martin Ser.
Format
Trade Paperback

Dimensions

Item Height
1.1 in
Item Weight
24.8 Oz
Item Length
9.2 in
Item Width
7 in

Additional Product Features

Intended Audience
Scholarly & Professional
LCCN
Qa76.76.D47m3652, 2008-024750
Dewey Edition
22
Illustrated
Yes
Dewey Decimal
005.1
Table of Content
Foreword xix Introduction xxv On the Cover xxix Chapter 1: Clean Code 1 There Will Be Code 2 Bad Code 3 The Total Cost of Owning a Mess 4 Schools of Thought 12 We Are Authors 13 The Boy Scout Rule 14 Prequel and Principles 15 Conclusion 15 Bibliography 15 Chapter 2: Meaningful Names 17 Introduction 17 Use Intention-Revealing Names 18 Avoid Disinformation 19 Make Meaningful Distinctions 20 Use Pronounceable Names 21 Use Searchable Names 22 Avoid Encodings 23 Avoid Mental Mapping 25 Class Names 25 Method Names 25 Don''t Be Cute 26 Pick One Word per Concept 26 Don''t Pun 26 Use Solution Domain Names 27 Use Problem Domain Names 27 Add Meaningful Context 27 Don''t Add Gratuitous Context 29 Final Words 30 Chapter 3: Functions 31 Small! 34 Do One Thing 35 One Level of Abstraction per Function 36 Switch Statements 37 Use Descriptive Names 39 Function Arguments 40 Have No Side Effects 44 Command Query Separation 45 Prefer Exceptions to Returning Error Codes 46 Don''t Repeat Yourself 48 Structured Programming 48 How Do You Write Functions Like This? 49 Conclusion 49 SetupTeardownIncluder 50 Bibliography 52 Chapter 4: Comments 53 Comments Do Not Make Up for Bad Code 55 Explain Yourself in Code 55 Good Comments 55 Bad Comments 59 Bibliography 74 Chapter 5: Formatting 75 The Purpose of Formatting 76 Vertical Formatting 76 Horizontal Formatting 85 Team Rules 90 Uncle Bob''s Formatting Rules &n

Artikelbeschreibung des Verkäufers

Info zu diesem Verkäufer

tangledupinbooks

99,7% positive Bewertungen2.322 Artikel verkauft

Mitglied seit Feb 2000
Antwortet meist innerhalb 3 Stunden
Angemeldet als privater VerkäuferDaher finden verbraucherschützende Vorschriften, die sich aus dem EU-Verbraucherrecht ergeben, keine Anwendung. Der eBay-Käuferschutz gilt dennoch für die meisten Käufe. Mehr erfahrenMehr erfahren
Tangled Up In Books - specializing in counterculture, vintage paperbacks, crime fiction, classic literature, poetry, science fiction, history, art, beat, rock, jazz, folk, blues, eastern religion, ...
Mehr anzeigen
Shop besuchenKontakt

Detaillierte Verkäuferbewertungen

Durchschnitt in den letzten 12 Monaten
Genaue Beschreibung
5.0
Angemessene Versandkosten
4.9
Lieferzeit
5.0
Kommunikation
5.0

Verkäuferbewertungen (968)

Alle Bewertungen
Positiv
Neutral
Negativ
  • s***i (1)- Bewertung vom Käufer.
    Letzte 6 Monate
    Bestätigter Kauf
    Book came earlier than expected was in very good condition and the seller was very easy to communicate with overall a really good experience. The book was as described. It was heavily packaged and safely contained in bubble wrap, a protective bag, and a plastic wrap and it’s 100% worth what I spent for it 
  • 3***a (96)- Bewertung vom Käufer.
    Letzter Monat
    Bestätigter Kauf
    A translation of Pushkin’s verse novel by Vladimir Nabokov, this item was exactly as described in the listing. The packaging was well done for shipment, and the book was delivered faster than expected. The introduction where Nabokov discussed the various difficulties in translating verse alone was worth the price of the book- a modest price for such a fascinating novel. buy of a fascinating novel
  • s***e (1)- Bewertung vom Käufer.
    Letzte 6 Monate
    Bestätigter Kauf
    Awesome packaging, in good condition and a nice note attached. And my name was spelled correctly-with my weird name so many people decide how it should be spelled and mess it up. It arrived quickly and as described. Great price for a hard to find book. Really loved the fact that the seller paid attention to detail and spelled my name the way it’s meant to be. Wonderful experience.

Produktbewertungen & Rezensionen

5.0
21 Produktbewertungen
  • 21 Nutzer bewerten dieses Produkt mit 5 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 4 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 3 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 2 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 1 von 5 Sternen

Would recommend

Good value

Compelling content

Relevanteste Rezensionen

  • A programmer who learned quite a lot

    I learned of 'Uncle Bob' from videos and I wanted to go further in my learning. The material is programming specific and quite excellent.

    Bestätigter Kauf: JaZustand: GebrauchtVerkauft von: oldcoyote77

  • Best way to write code!

    If you want to be a coder, do it right! Read this book by one of the greatest programming masterminds!

    Bestätigter Kauf: JaZustand: NeuVerkauft von: uniquestore2024

  • Grade saver for an affordable price

    Saved me alot of money honestly and its required for my class so good bang for your buck

    Bestätigter Kauf: JaZustand: NeuVerkauft von: willow_shop20

  • Thumb up

    This book is a must for every developer that wants to know how write good code at every level of expertise

    Bestätigter Kauf: JaZustand: GebrauchtVerkauft von: thejacksonmerchantco

  • As described, great book

    Bestätigter Kauf: JaZustand: GebrauchtVerkauft von: slugstore