SULJE VALIKKO

avaa valikko

Ulkomaiset kirjat, Computers, Programming, Object Oriented | Akateeminen Kirjakauppa

Haullasi löytyi yhteensä 550 tuotetta
Haluatko tarkentaa hakukriteerejä?



Refactoring -  Improving the Design of Existing Code
Martin Fowler
Pearson Education (US) (2019)
Kovakantinen kirja
53,90
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Design Patterns -  Elements of Reusable Object-Oriented Software
Erich Gamma; Richard Helm; Ralph Johnson; John Vlissides
Pearson Education (US) (1995)
Kovakantinen kirja
54,70
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Learning Python 5ed
Mark Lutz
O'Reilly (2013)
Pehmeäkantinen kirja
82,80
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Lingo Sorcery - The Magic of Lists, Objects and Intelligent Agents
Peter Small
John Wiley & Sons Inc (1998)
Pehmeäkantinen kirja
73,90
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Object Technology - The New Approach to Application Development
Jerry Cashin
iUniverse (2000)
Pehmeäkantinen kirja
82,50
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
An Introduction to Object-Oriented Analysis - Objects and UML in Plain English
David William Brown
John Wiley & Sons Inc (2001)
Pehmeäkantinen kirja
241,80
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Building Java Enterprise Applications - V 1 Architecture
Brett Mclaughlin
O'Reilly (2002)
Pehmeäkantinen kirja
45,50
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Building Object Applications that Work: Your Step-by-Step Handbook for Developing Robust Systems with Object Technology
Scott W. Ambler
Cambridge University Press (1998)
Pehmeäkantinen kirja
83,80
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Karel++ - A Gentle Introduction to the Art of Object-Oriented Programming
Joseph Bergin; Mark Stehlik; Jim Roberts; Richard E. Pattis
John Wiley & Sons Inc (1996)
Pehmeäkantinen kirja
94,80
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Enterprise Integration - An Architecture for Enterprise Application & Systems Integration
FA Cummins
John Wiley & Sons (2002)
Pehmeäkantinen kirja
85,10
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
AntiPatterns - Refactoring Software, Architectures, and Projects in Crisis
William J. Brown; Raphael C. Malveau; Hays W. "Skip" McCormick; Thomas J. Mowbray
John Wiley & Sons Inc (1998)
Pehmeäkantinen kirja
53,10
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
WebLogic Server 6.1 Workbook for Enterprise Javabeans 3e
Greg Nyberg
O'Reilly (2002)
Pehmeäkantinen kirja
28,50
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
WebSphere 4.0 AE's Workbook for Enterprise Javabeans 3e
Kyle Brown
O'Reilly (2002)
Pehmeäkantinen kirja
29,20
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Mastering AspectJ
Joseph D. Gradecki; Nicholas Lesiecki
John Wiley & Sons (2003)
Pehmeäkantinen kirja
32,90
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Principles of Object-Oriented Modeling and Simulation with Modelica 2.1
Peter Fritzson
John Wiley & Sons Inc (2004)
Pehmeäkantinen kirja
129,10
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
UML by Example
Ghinwa Jalloul
Cambridge University Press (2004)
Pehmeäkantinen kirja
62,00
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
OOP Demystified
Jim Keogh; Mario Giannini
McGraw-Hill Education - Europe (2004)
Pehmeäkantinen kirja
24,20
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Authorware 6 :
Wilson/Thornton
Cengage Learning/Delmar (CNG) (2002)
Pehmeäkantinen kirja
61,50
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Computer Algorithms - String Pattern Matching Strategies
Jun-ichi Aoe
IEEE Computer Society Press,U.S. (1994)
Pehmeäkantinen kirja
98,50
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
SmallTalk, Objects, and Design
Chamond Liu
Author Solutions Inc (2000)
Pehmeäkantinen kirja
22,70
Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
Refactoring - Improving the Design of Existing Code
53,90 €
Pearson Education (US)
Sivumäärä: 448 sivua
Asu: Kovakantinen kirja
Painos: 2nd edition
Julkaisuvuosi: 2019, 11.01.2019 (lisätietoa)
Kieli: Englanti
Martin Fowler’s guide to reworking bad code into well-structured code

Refactoring improves the design of existing code and enhances software maintainability, as well as making existing code easier to understand. Original Agile Manifesto signer and software development thought leader, Martin Fowler, provides a catalog of refactorings that explains why you should refactor; how to recognize code that needs refactoring; and how to actually do it successfully, no matter what language you use.



Refactoring principles: understand the process and general principles of refactoring
Code smells: recognize “bad smells” in code that signal opportunities to refactor
Application improvement: quickly apply useful refactorings to make a program easier to comprehend and change
Building tests: writing good tests increases a programmer’s effectiveness
Moving features: an important part of refactoring is moving elements between contexts
Data structures: a collection of refactorings to organize data, an important role in programs
Conditional Logic: use refactorings to make conditional sections easier to understand
APIs: modules and their functions are the building blocks of our software, and APIs are the joints that we use to plug them together
Inheritance: it is both very useful and easy to misuse, and it’s often hard to see the misuse until it’s in the rear-view mirror---refactorings can fix the misuse

Examples are written in JavaScript, but you shouldn’t find it difficult to adapt the refactorings to whatever language you are currently using as they look mostly the same in different languages.

"Whenever you read [Refactoring], it’s time to read it again. And if you haven’t read it yet, please do before writing another line of code." –David Heinemeier Hansson, Creator of Ruby on Rails, Founder & CTO at Basecamp

“Any fool can write code that a computer can understand. Good programmers write code that humans can understand.” –M. Fowler (1999)

Tuotetta lisätty
ostoskoriin kpl
Siirry koriin
LISÄÄ OSTOSKORIIN
Tilaustuote | Arvioimme, että tuote lähetetään meiltä noin 4-5 viikossa | Tilaa jouluksi viimeistään 27.11.2024
Myymäläsaatavuus
Helsinki
Tapiola
Turku
Tampere
Refactoring -  Improving the Design of Existing Codezoom
Näytä kaikki tuotetiedot
ISBN:
9780134757599
Sisäänkirjautuminen
Kirjaudu sisään
Rekisteröityminen
Oma tili
Omat tiedot
Omat tilaukset
Omat laskut
Lisätietoja
Asiakaspalvelu
Tietoa verkkokaupasta
Toimitusehdot
Tietosuojaseloste