fbpx
Wikipedia

Code refactoring

In computer programming and software design, code refactoring is the process of restructuring existing computer code—changing the factoring—without changing its external behavior. Refactoring is intended to improve the design, structure, and/or implementation of the software (its non-functional attributes), while preserving its functionality. Potential advantages of refactoring may include improved code readability and reduced complexity; these can improve the source code's maintainability and create a simpler, cleaner, or more expressive internal architecture or object model to improve extensibility. Another potential goal for refactoring is improved performance; software engineers face an ongoing challenge to write programs that perform faster or use less memory.

Typically, refactoring applies a series of standardized basic micro-refactorings, each of which is (usually) a tiny change in a computer program's source code that either preserves the behavior of the software, or at least does not modify its conformance to functional requirements. Many development environments provide automated support for performing the mechanical aspects of these basic refactorings. If done well, code refactoring may help software developers discover and fix hidden or dormant bugs or vulnerabilities in the system by simplifying the underlying logic and eliminating unnecessary levels of complexity. If done poorly, it may fail the requirement that external functionality not be changed, and may thus introduce new bugs.

By continuously improving the design of code, we make it easier and easier to work with. This is in sharp contrast to what typically happens: little refactoring and a great deal of attention paid to expediently add new features. If you get into the hygienic habit of refactoring continuously, you'll find that it is easier to extend and maintain code.

— Joshua Kerievsky, Refactoring to Patterns[1]

Motivation

Refactoring is usually motivated by noticing a code smell.[2] For example, the method at hand may be very long, or it may be a near duplicate of another nearby method. Once recognized, such problems can be addressed by refactoring the source code, or transforming it into a new form that behaves the same as before but that no longer "smells".

For a long routine, one or more smaller subroutines can be extracted; or for duplicate routines, the duplication can be removed and replaced with one shared function. Failure to perform refactoring can result in accumulating technical debt; on the other hand, refactoring is one of the primary means of repaying technical debt.[3]

Benefits

There are two general categories of benefits to the activity of refactoring.

  1. Maintainability. It is easier to fix bugs because the source code is easy to read and the intent of its author is easy to grasp.[4] This might be achieved by reducing large monolithic routines into a set of individually concise, well-named, single-purpose methods. It might be achieved by moving a method to a more appropriate class, or by removing misleading comments.
  2. Extensibility. It is easier to extend the capabilities of the application if it uses recognizable design patterns, and it provides some flexibility where none before may have existed.[1]

Performance engineering can remove inefficiencies in programs, known as software bloat, arising from traditional software-development strategies that aim to minimize an application's development time rather than the time it takes to run. Performance engineering can also tailor software to the hardware on which it runs, for example, to take advantage of parallel processors and vector units.[5]

Challenges

Refactoring requires extracting software system structure, data models, and intra-application dependencies to get back knowledge of an existing software system.[6] The turnover of teams implies missing or inaccurate knowledge of the current state of a system and about design decisions made by departing developers. Further code refactoring activities may require additional effort to regain this knowledge.[7] Refactoring activities generate architectural modifications that deteriorate the structural architecture of a software system. Such deterioration affects architectural properties such as maintainability and comprehensibility which can lead to a complete re-development of software systems. [8]

Code refactoring activities are secured with software intelligence when using tools and techniques providing data about algorithms and sequences of code execution.[9] Providing a comprehensible format for the inner-state of software system structure, data models, and intra-components dependencies is a critical element to form a high-level understanding and then refined views of what needs to be modified, and how.[10]

Testing

Automatic unit tests should be set up before refactoring to ensure routines still behave as expected.[11] Unit tests can bring stability to even large refactors when performed with a single atomic commit. A common strategy to allow safe and atomic refactors spanning multiple projects is to store all projects in a single repository, known as monorepo.[12]

With unit testing in place, refactoring is then an iterative cycle of making a small program transformation, testing it to ensure correctness, and making another small transformation. If at any point a test fails, the last small change is undone and repeated in a different way. Through many small steps the program moves from where it was to where you want it to be. For this very iterative process to be practical, the tests must run very quickly, or the programmer would have to spend a large fraction of their time waiting for the tests to finish. Proponents of extreme programming and other agile software development describe this activity as an integral part of the software development cycle.

Techniques

Here are some examples of micro-refactorings; some of these may only apply to certain languages or language types. A longer list can be found in Martin Fowler's refactoring book[2][page needed] and website.[13] Many development environments provide automated support for these micro-refactorings. For instance, a programmer could click on the name of a variable and then select the "Encapsulate field" refactoring from a context menu. The IDE would then prompt for additional details, typically with sensible defaults and a preview of the code changes. After confirmation by the programmer it would carry out the required changes throughout the code.

  • Techniques that allow for more understanding
    • Program Dependence Graph - explicit representation of data and control dependencies [14]
    • System Dependence Graph - representation of procedure calls between PDG [15]
    • Software intelligence - reverse engineers the initial state to understand existing intra-application dependencies
  • Techniques that allow for more abstraction
  • Techniques for breaking code apart into more logical pieces
    • Componentization breaks code down into reusable semantic units that present clear, well-defined, simple-to-use interfaces.
    • Extract class moves part of the code from an existing class into a new class.
    • Extract method, to turn part of a larger method into a new method. By breaking down code in smaller pieces, it is more easily understandable. This is also applicable to functions.
  • Techniques for improving names and location of code
    • Move method or move field – move to a more appropriate class or source file
    • Rename method or rename field – changing the name into a new one that better reveals its purpose
    • Pull up – in object-oriented programming (OOP), move to a superclass
    • Push down – in OOP, move to a subclass[13]
  • Automatic clone detection[18]

Hardware refactoring

While the term refactoring originally referred exclusively to refactoring of software code, in recent years code written in hardware description languages has also been refactored. The term hardware refactoring is used as a shorthand term for refactoring of code in hardware description languages. Since hardware description languages are not considered to be programming languages by most hardware engineers,[19] hardware refactoring is to be considered a separate field from traditional code refactoring.

Automated refactoring of analog hardware descriptions (in VHDL-AMS) has been proposed by Zeng and Huss.[20] In their approach, refactoring preserves the simulated behavior of a hardware design. The non-functional measurement that improves is that refactored code can be processed by standard synthesis tools, while the original code cannot. Refactoring of digital hardware description languages, albeit manual refactoring, has also been investigated by Synopsys fellow Mike Keating.[21][22] His target is to make complex systems easier to understand, which increases the designers' productivity.

History

The first known use of the term "refactoring" in the published literature was in a September, 1990 article by William Opdyke and Ralph Johnson.[23] Griswold's Ph.D. thesis,[24] Opdyke's Ph.D. thesis,[25] published in 1992, also used this term.[26] Although refactoring code has been done informally for decades, William Griswold's 1991 Ph.D. dissertation[24] is one of the first major academic works on refactoring functional and procedural programs, followed by William Opdyke's 1992 dissertation[25] on the refactoring of object-oriented programs,[26] although all the theory and machinery have long been available as program transformation systems. All of these resources provide a catalog of common methods for refactoring; a refactoring method has a description of how to apply the method and indicators for when you should (or should not) apply the method.

Martin Fowler's book Refactoring: Improving the Design of Existing Code is the canonical reference.[according to whom?]

The terms "factoring" and "factoring out" have been used in this way in the Forth community since at least the early 1980s. Chapter Six of Leo Brodie's book Thinking Forth (1984)[27] is dedicated to the subject.

In extreme programming, the Extract Method refactoring technique has essentially the same meaning as factoring in Forth; to break down a "word" (or function) into smaller, more easily maintained functions.

Refactorings can also be reconstructed[28] posthoc to produce concise descriptions of complex software changes recorded in software repositories like CVS or SVN.

Automated code refactoring

Many software editors and IDEs have automated refactoring support. Here is a list of a few of these editors, or so-called refactoring browsers.

See also

References

  1. ^ a b Kerievsky, Joshua (2004). Refactoring to Patterns. Addison Wesley.
  2. ^ a b Fowler, Martin (1999). Refactoring. Improving the Design of Existing Code. Addison-Wesley. pp. 63ff. ISBN 978-0-201-48567-7.
  3. ^ Suryanarayana, Girish (November 2014). Refactoring for Software Design Smells. Morgan Kaufmann. p. 258. ISBN 978-0128013977.
  4. ^ Martin, Robert (2009). Clean Code. Prentice Hall.
  5. ^ Leiserson, Charles E.; Thompson, Neil C.; Emer, Joel S.; Kuszmaul, Bradley C.; Lampson, Butler W.; Sanchez, Daniel; Schardl, Tao B. (2020). "There's plenty of room at the Top: What will drive computer performance after Moore's law?". Science. 368 (6495): eaam9744. doi:10.1126/science.aam9744. PMID 32499413.
  6. ^ Haendler, Thorsten; Neumann, Gustaf (2019). "A Framework for the Assessment and Training of Software Refactoring Competences". Proc. Of 11th International Conference on Knowledge Management and Information Systems (KMIS).: 307–316. doi:10.5220/0008350803070316. ISBN 978-989-758-382-7. S2CID 204754665.
  7. ^ Nassif, Matthieu; Robillard, Martin P. (November 2017). "Revisiting turnover-induced knowledge loss in software projects". 2017 IEEE International Conference on Software Maintenance and Evolution (ICSME): 261–272. doi:10.1109/ICSME.2017.64. ISBN 978-1-5386-0992-7. S2CID 13147063.
  8. ^ van Gurp, Jilles; Bosch, Jan (March 2002). "Design erosion: problems and causes". Journal of Systems and Software. 61 (2): 105–119. doi:10.1016/S0164-1212(01)00152-2.
  9. ^ Hassan, Ahmed E.; Xie, Tao (November 2010). "Software intelligence: the future of mining software engineering data". In Proceedings of the FSE/SDP Workshop on Future of Software Engineering Research (FoSER '10): 161–166. doi:10.1145/1882362.1882397. S2CID 3485526.
  10. ^ Novais, Renato; Santos, José Amancio; Mendonça, Manoel (2017). "Experimentally assessing the combination of multiple visualization strategies for software evolution analysis". Journal of Systems and Software. 128: 56–71. doi:10.1016/j.jss.2017.03.006.
  11. ^ Fowler, Martin (1999). Refactoring : improving the design of existing code. Reading, MA: Addison-Wesley. ISBN 978-0201485677. OCLC 41017370.
  12. ^ Smart, John Ferguson (2008). Java Power Tools. "O'Reilly Media, Inc.". p. 301. ISBN 9781491954546. Retrieved 26 July 2018.
  13. ^ a b (these are only about OOP however).Refactoring techniques in Fowler's refactoring Website
  14. ^ Ferrante, Jeanne; Ottenstein, Karl J.; Warren, Joe D. (July 1987). "The program dependence graph and its use in optimization". ACM Transactions on Programming Languages and Systems. ACM. 9 (3): 319–349. doi:10.1145/24039.24041. S2CID 505075.
  15. ^ Donglin, Linag; Harrold, M. J. (November 2008). "Slicing objects using system dependence graphs". Proceedings. International Conference on Software Maintenance. IEEE: 319–349. doi:10.1109/ICSM.1998.738527. ISBN 978-0-8186-8779-2. S2CID 18160599.
  16. ^ "Replace type-checking code with State/Strategy".
  17. ^ "Replace conditional with polymorphism".
  18. ^ Bruntink, Magiel, et al. "An evaluation of clone detection techniques for crosscutting concerns." Software Maintenance, 2004. Proceedings. 20th IEEE International Conference on. IEEE, 2004.
  19. ^ Hardware description languages#HDL and programming languages
  20. ^ Kaiping Zeng, Sorin A. Huss, "Architecture refinements by code refactoring of behavioral VHDL-AMS models". ISCAS 2006
  21. ^ M. Keating :"Complexity, Abstraction, and the Challenges of Designing Complex Systems", in DAC'08 tutorial [1] 2016-03-28 at the Wayback Machine"Bridging a Verification Gap: C++ to RTL for Practical Design"
  22. ^ M. Keating, P. Bricaud: Reuse Methodology Manual for System-on-a-Chip Designs, Kluwer Academic Publishers, 1999.
  23. ^ Opdyke, William F.; Johnson, Ralph E. (September 1990). "Refactoring: An Aid in Designing Application Frameworks and Evolving Object-Oriented Systems". Proceedings of the Symposium on Object Oriented Programming Emphasizing Practical Applications (SOOPPA). ACM.
  24. ^ a b Griswold, William G (July 1991). Program Restructuring as an Aid to Software Maintenance (PDF) (Ph.D. thesis). University of Washington. Retrieved 2011-12-24.
  25. ^ a b Opdyke, William F (June 1992). Refactoring Object-Oriented Frameworks (Ph.D. thesis). University of Illinois at Urbana-Champaign. Archived from the original (compressed Postscript) on 2019-12-16. Retrieved 2008-02-12.
  26. ^ a b "Martin Fowler, "MF Bliki: EtymologyOfRefactoring"".
  27. ^ Brodie, Leo (2004). . pp. 171–196. ISBN 0-9764587-0-5. Archived from the original on 16 December 2005. Retrieved 3 May 2020.
  28. ^ Sokolov, Andriy. "What is code refactoring?".
  29. ^ "What's new in Xcode 9".
  30. ^ "Refactoring in Qt Creator".

Further reading

  • Wake, William C. (2003). Refactoring Workbook. Addison-Wesley. ISBN 978-0-321-10929-3.
  • Mens, T.; Tourwe, T. (February 2004). "A survey of software refactoring". IEEE Transactions on Software Engineering. 30 (2): 126–139. doi:10.1109/tse.2004.1265817. ISSN 0098-5589. S2CID 206778272.
  • Feathers, Michael C (2004). Working Effectively with Legacy Code. Prentice Hall. ISBN 978-0-13-117705-5.
  • Kerievsky, Joshua (2004). Refactoring To Patterns. Addison-Wesley. ISBN 978-0-321-21335-8.
  • Arsenovski, Danijel (2008). Professional Refactoring in Visual Basic. Wrox. ISBN 978-0-470-17979-6.
  • Arsenovski, Danijel (2009). Professional Refactoring in C# and ASP.NET. Wrox. ISBN 978-0-470-43452-9.
  • Ritchie, Peter (2010). Refactoring with Visual Studio 2010. Packt. ISBN 978-1-84968-010-3.

External links

  • What Is Refactoring? (c2.com article)
  • Martin Fowler's homepage about refactoring
  • Refactoring at Curlie

code, refactoring, refactor, redirects, here, refactor, wikipedia, wikipedia, refactoring, talk, pages, this, article, about, behaviour, preserving, change, confused, with, rewrite, programming, computer, programming, software, design, code, refactoring, proce. Refactor redirects here For the use of refactor on Wikipedia see Wikipedia Refactoring talk pages This article is about a behaviour preserving change It is not to be confused with Rewrite programming In computer programming and software design code refactoring is the process of restructuring existing computer code changing the factoring without changing its external behavior Refactoring is intended to improve the design structure and or implementation of the software its non functional attributes while preserving its functionality Potential advantages of refactoring may include improved code readability and reduced complexity these can improve the source code s maintainability and create a simpler cleaner or more expressive internal architecture or object model to improve extensibility Another potential goal for refactoring is improved performance software engineers face an ongoing challenge to write programs that perform faster or use less memory Typically refactoring applies a series of standardized basic micro refactorings each of which is usually a tiny change in a computer program s source code that either preserves the behavior of the software or at least does not modify its conformance to functional requirements Many development environments provide automated support for performing the mechanical aspects of these basic refactorings If done well code refactoring may help software developers discover and fix hidden or dormant bugs or vulnerabilities in the system by simplifying the underlying logic and eliminating unnecessary levels of complexity If done poorly it may fail the requirement that external functionality not be changed and may thus introduce new bugs By continuously improving the design of code we make it easier and easier to work with This is in sharp contrast to what typically happens little refactoring and a great deal of attention paid to expediently add new features If you get into the hygienic habit of refactoring continuously you ll find that it is easier to extend and maintain code Joshua Kerievsky Refactoring to Patterns 1 Contents 1 Motivation 2 Benefits 3 Challenges 4 Testing 5 Techniques 6 Hardware refactoring 7 History 8 Automated code refactoring 9 See also 10 References 11 Further reading 12 External linksMotivation EditRefactoring is usually motivated by noticing a code smell 2 For example the method at hand may be very long or it may be a near duplicate of another nearby method Once recognized such problems can be addressed by refactoring the source code or transforming it into a new form that behaves the same as before but that no longer smells For a long routine one or more smaller subroutines can be extracted or for duplicate routines the duplication can be removed and replaced with one shared function Failure to perform refactoring can result in accumulating technical debt on the other hand refactoring is one of the primary means of repaying technical debt 3 Benefits EditThere are two general categories of benefits to the activity of refactoring Maintainability It is easier to fix bugs because the source code is easy to read and the intent of its author is easy to grasp 4 This might be achieved by reducing large monolithic routines into a set of individually concise well named single purpose methods It might be achieved by moving a method to a more appropriate class or by removing misleading comments Extensibility It is easier to extend the capabilities of the application if it uses recognizable design patterns and it provides some flexibility where none before may have existed 1 Performance engineering can remove inefficiencies in programs known as software bloat arising from traditional software development strategies that aim to minimize an application s development time rather than the time it takes to run Performance engineering can also tailor software to the hardware on which it runs for example to take advantage of parallel processors and vector units 5 Challenges EditRefactoring requires extracting software system structure data models and intra application dependencies to get back knowledge of an existing software system 6 The turnover of teams implies missing or inaccurate knowledge of the current state of a system and about design decisions made by departing developers Further code refactoring activities may require additional effort to regain this knowledge 7 Refactoring activities generate architectural modifications that deteriorate the structural architecture of a software system Such deterioration affects architectural properties such as maintainability and comprehensibility which can lead to a complete re development of software systems 8 Code refactoring activities are secured with software intelligence when using tools and techniques providing data about algorithms and sequences of code execution 9 Providing a comprehensible format for the inner state of software system structure data models and intra components dependencies is a critical element to form a high level understanding and then refined views of what needs to be modified and how 10 Testing EditAutomatic unit tests should be set up before refactoring to ensure routines still behave as expected 11 Unit tests can bring stability to even large refactors when performed with a single atomic commit A common strategy to allow safe and atomic refactors spanning multiple projects is to store all projects in a single repository known as monorepo 12 With unit testing in place refactoring is then an iterative cycle of making a small program transformation testing it to ensure correctness and making another small transformation If at any point a test fails the last small change is undone and repeated in a different way Through many small steps the program moves from where it was to where you want it to be For this very iterative process to be practical the tests must run very quickly or the programmer would have to spend a large fraction of their time waiting for the tests to finish Proponents of extreme programming and other agile software development describe this activity as an integral part of the software development cycle Techniques EditHere are some examples of micro refactorings some of these may only apply to certain languages or language types A longer list can be found in Martin Fowler s refactoring book 2 page needed and website 13 Many development environments provide automated support for these micro refactorings For instance a programmer could click on the name of a variable and then select the Encapsulate field refactoring from a context menu The IDE would then prompt for additional details typically with sensible defaults and a preview of the code changes After confirmation by the programmer it would carry out the required changes throughout the code Techniques that allow for more understanding Program Dependence Graph explicit representation of data and control dependencies 14 System Dependence Graph representation of procedure calls between PDG 15 Software intelligence reverse engineers the initial state to understand existing intra application dependencies Techniques that allow for more abstraction Encapsulate field force code to access the field with getter and setter methods Generalize type create more general types to allow for more code sharing Replace type checking code with state strategy 16 Replace conditional with polymorphism 17 Techniques for breaking code apart into more logical pieces Componentization breaks code down into reusable semantic units that present clear well defined simple to use interfaces Extract class moves part of the code from an existing class into a new class Extract method to turn part of a larger method into a new method By breaking down code in smaller pieces it is more easily understandable This is also applicable to functions Techniques for improving names and location of code Move method or move field move to a more appropriate class or source file Rename method or rename field changing the name into a new one that better reveals its purpose Pull up in object oriented programming OOP move to a superclass Push down in OOP move to a subclass 13 Automatic clone detection 18 Hardware refactoring EditWhile the term refactoring originally referred exclusively to refactoring of software code in recent years code written in hardware description languages has also been refactored The term hardware refactoring is used as a shorthand term for refactoring of code in hardware description languages Since hardware description languages are not considered to be programming languages by most hardware engineers 19 hardware refactoring is to be considered a separate field from traditional code refactoring Automated refactoring of analog hardware descriptions in VHDL AMS has been proposed by Zeng and Huss 20 In their approach refactoring preserves the simulated behavior of a hardware design The non functional measurement that improves is that refactored code can be processed by standard synthesis tools while the original code cannot Refactoring of digital hardware description languages albeit manual refactoring has also been investigated by Synopsys fellow Mike Keating 21 22 His target is to make complex systems easier to understand which increases the designers productivity History EditThe first known use of the term refactoring in the published literature was in a September 1990 article by William Opdyke and Ralph Johnson 23 Griswold s Ph D thesis 24 Opdyke s Ph D thesis 25 published in 1992 also used this term 26 Although refactoring code has been done informally for decades William Griswold s 1991 Ph D dissertation 24 is one of the first major academic works on refactoring functional and procedural programs followed by William Opdyke s 1992 dissertation 25 on the refactoring of object oriented programs 26 although all the theory and machinery have long been available as program transformation systems All of these resources provide a catalog of common methods for refactoring a refactoring method has a description of how to apply the method and indicators for when you should or should not apply the method Martin Fowler s book Refactoring Improving the Design of Existing Code is the canonical reference according to whom The terms factoring and factoring out have been used in this way in the Forth community since at least the early 1980s Chapter Six of Leo Brodie s book Thinking Forth 1984 27 is dedicated to the subject In extreme programming the Extract Method refactoring technique has essentially the same meaning as factoring in Forth to break down a word or function into smaller more easily maintained functions Refactorings can also be reconstructed 28 posthoc to produce concise descriptions of complex software changes recorded in software repositories like CVS or SVN Automated code refactoring EditThis section needs additional citations for verification Please help improve this article by adding citations to reliable sources Unsourced material may be challenged and removed Find sources Code refactoring news newspapers books scholar JSTOR July 2018 Learn how and when to remove this template message Many software editors and IDEs have automated refactoring support Here is a list of a few of these editors or so called refactoring browsers DMS Software Reengineering Toolkit Implements large scale refactoring for C C C COBOL Java PHP and other languages Eclipse based Eclipse for Java and to a lesser extent C PHP Ruby and JavaScript PyDev for Python Photran a Fortran plugin for the Eclipse IDE Embarcadero Delphi IntelliJ based Resharper for C AppCode for Objective C C and C IntelliJ IDEA for Java PyCharm for Python WebStorm for JavaScript PhpStorm for PHP Android Studio for Java and C JDeveloper for Java NetBeans for Java Smalltalk Most dialects include powerful refactoring tools Many use the original refactoring browser produced in the early 90s by Ralph Johnson Visual Studio based Visual Studio for NET and C CodeRush addon for Visual Studio Visual Assist addon for Visual Studio with refactoring support for C and C Wing IDE for Python Xcode for C Objective C and Swift 29 Qt Creator for C Objective C and QML 30 See also EditAmelioration pattern Code review Database refactoring Decomposition computer science Modular programming Obfuscated code Prefactoring Separation of concerns Software peer review Test driven developmentReferences Edit a b Kerievsky Joshua 2004 Refactoring to Patterns Addison Wesley a b Fowler Martin 1999 Refactoring Improving the Design of Existing Code Addison Wesley pp 63ff ISBN 978 0 201 48567 7 Suryanarayana Girish November 2014 Refactoring for Software Design Smells Morgan Kaufmann p 258 ISBN 978 0128013977 Martin Robert 2009 Clean Code Prentice Hall Leiserson Charles E Thompson Neil C Emer Joel S Kuszmaul Bradley C Lampson Butler W Sanchez Daniel Schardl Tao B 2020 There s plenty of room at the Top What will drive computer performance after Moore s law Science 368 6495 eaam9744 doi 10 1126 science aam9744 PMID 32499413 Haendler Thorsten Neumann Gustaf 2019 A Framework for the Assessment and Training of Software Refactoring Competences Proc Of 11th International Conference on Knowledge Management and Information Systems KMIS 307 316 doi 10 5220 0008350803070316 ISBN 978 989 758 382 7 S2CID 204754665 Nassif Matthieu Robillard Martin P November 2017 Revisiting turnover induced knowledge loss in software projects 2017 IEEE International Conference on Software Maintenance and Evolution ICSME 261 272 doi 10 1109 ICSME 2017 64 ISBN 978 1 5386 0992 7 S2CID 13147063 van Gurp Jilles Bosch Jan March 2002 Design erosion problems and causes Journal of Systems and Software 61 2 105 119 doi 10 1016 S0164 1212 01 00152 2 Hassan Ahmed E Xie Tao November 2010 Software intelligence the future of mining software engineering data In Proceedings of the FSE SDP Workshop on Future of Software Engineering Research FoSER 10 161 166 doi 10 1145 1882362 1882397 S2CID 3485526 Novais Renato Santos Jose Amancio Mendonca Manoel 2017 Experimentally assessing the combination of multiple visualization strategies for software evolution analysis Journal of Systems and Software 128 56 71 doi 10 1016 j jss 2017 03 006 Fowler Martin 1999 Refactoring improving the design of existing code Reading MA Addison Wesley ISBN 978 0201485677 OCLC 41017370 Smart John Ferguson 2008 Java Power Tools O Reilly Media Inc p 301 ISBN 9781491954546 Retrieved 26 July 2018 a b these are only about OOP however Refactoring techniques in Fowler s refactoring Website Ferrante Jeanne Ottenstein Karl J Warren Joe D July 1987 The program dependence graph and its use in optimization ACM Transactions on Programming Languages and Systems ACM 9 3 319 349 doi 10 1145 24039 24041 S2CID 505075 Donglin Linag Harrold M J November 2008 Slicing objects using system dependence graphs Proceedings International Conference on Software Maintenance IEEE 319 349 doi 10 1109 ICSM 1998 738527 ISBN 978 0 8186 8779 2 S2CID 18160599 Replace type checking code with State Strategy Replace conditional with polymorphism Bruntink Magiel et al An evaluation of clone detection techniques for crosscutting concerns Software Maintenance 2004 Proceedings 20th IEEE International Conference on IEEE 2004 Hardware description languages HDL and programming languages Kaiping Zeng Sorin A Huss Architecture refinements by code refactoring of behavioral VHDL AMS models ISCAS 2006 M Keating Complexity Abstraction and the Challenges of Designing Complex Systems in DAC 08 tutorial 1 Archived 2016 03 28 at the Wayback Machine Bridging a Verification Gap C to RTL for Practical Design M Keating P Bricaud Reuse Methodology Manual for System on a Chip Designs Kluwer Academic Publishers 1999 Opdyke William F Johnson Ralph E September 1990 Refactoring An Aid in Designing Application Frameworks and Evolving Object Oriented Systems Proceedings of the Symposium on Object Oriented Programming Emphasizing Practical Applications SOOPPA ACM a b Griswold William G July 1991 Program Restructuring as an Aid to Software Maintenance PDF Ph D thesis University of Washington Retrieved 2011 12 24 a b Opdyke William F June 1992 Refactoring Object Oriented Frameworks Ph D thesis University of Illinois at Urbana Champaign Archived from the original compressed Postscript on 2019 12 16 Retrieved 2008 02 12 a b Martin Fowler MF Bliki EtymologyOfRefactoring Brodie Leo 2004 Thinking Forth pp 171 196 ISBN 0 9764587 0 5 Archived from the original on 16 December 2005 Retrieved 3 May 2020 Sokolov Andriy What is code refactoring What s new in Xcode 9 Refactoring in Qt Creator Further reading EditWake William C 2003 Refactoring Workbook Addison Wesley ISBN 978 0 321 10929 3 Mens T Tourwe T February 2004 A survey of software refactoring IEEE Transactions on Software Engineering 30 2 126 139 doi 10 1109 tse 2004 1265817 ISSN 0098 5589 S2CID 206778272 Feathers Michael C 2004 Working Effectively with Legacy Code Prentice Hall ISBN 978 0 13 117705 5 Kerievsky Joshua 2004 Refactoring To Patterns Addison Wesley ISBN 978 0 321 21335 8 Arsenovski Danijel 2008 Professional Refactoring in Visual Basic Wrox ISBN 978 0 470 17979 6 Arsenovski Danijel 2009 Professional Refactoring in C and ASP NET Wrox ISBN 978 0 470 43452 9 Ritchie Peter 2010 Refactoring with Visual Studio 2010 Packt ISBN 978 1 84968 010 3 External links EditWhat Is Refactoring c2 com article Martin Fowler s homepage about refactoring Refactoring at Curlie Retrieved from https en wikipedia org w index php title Code refactoring amp oldid 1135947171, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.