| Refactoring |
Website Links For Refactoring |
Information AboutRefactoring |
|
Refactoring is the process of Rewriting a computer program or other material to improve its structure or Readability , while explicitly keeping its Meaning or Behavior . REFACTORING CODE In Software Engineering , the term ''refactoring'' means modifying Source Code without changing its external behavior, and is sometimes informally referred to as "cleaning it up". In Extreme Programming and other Agile Methodologies refactoring is an integral part of the ensures that refactoring does not make the code stop working. Refactoring does not fix Bug s or add new Functionality . Rather it is designed to improve the Understandability of the code or change its Structure and Design , and remove Dead Code , to make it easier for human maintenance in the future. In particular, adding new behavior to a program might be difficult with the program's given structure, so a developer might refactor it first to make it easy, and then add the new behavior. An example of a trivial refactoring is to change a variable name into something more meaningful, such as from a single letter 'i' to 'interestRate'. A more complex refactoring is to turn the code within an if block into a Subroutine . An even more complex refactoring is to replace an if Conditional with Polymorphism . While "cleaning up" code has happened for decades, the key insight in refactoring is to intentionally "clean up" code separately from adding new functionality, using a known catalogue of common useful refactoring methods, and then separately testing the code (knowing that any behavioral changes indicate a bug). The new aspect is explicitly wanting to improve an existing design without altering its intent or behavior.The term is by analogy with the Factorization of Number s and Polynomial s. For example, ''x''2 − 1 can be factored as (''x'' + 1)(''x'' − 1), revealing an internal structure that was previously not visible (such as the two roots at −1 and +1). Similarly, in software refactoring, the change in visible structure can often reveal the "hidden" internal structure of the original code. Refactoring is done as a separate step, to simplify testing. At the end of the refactoring, any change in behavior is clearly a Bug and can be fixed separately from the problem of Debugging the new behavior. ; a refactoring method has a Description of how to apply the Method and Indicator s for when you should (or should not) apply the method. Refactoring is thought by many to be an important . COMMON REFACTORINGS
FORTH The term "factoring" has been used in the Forth community since at least the early 1980s. Chapter Six of Leo Brodie 's book '' Thinking Forth '' ( 1984 ) is dedicated to the subject. In Forth, factoring has essentially the same meaning that refactoring does in Extreme Programming —to break down a Function (a "word" in Forth) into smaller, more easily maintained functions. REFACTORING OTHER TEXT The term ''refactoring'' originated in Computer Programming , but the concept has also been applied when modifying any text. On Wiki websites, ''refactoring'' refers to the process of rewriting and reorganizing text to shorten it while preserving content. This particularly applies to '' Discussion s'', which thus can be made accessible to people who are interested in the arguments made in the discussion, and the information to be gleaned from it, rather than the history of the discussion itself. Refactoring can be difficult to do in such a way that it makes all participants of a discussion happy. : ETYMOLOGY The first known use of the term "refactoring" in the published literature was in the article, ''Refactoring: An Aid in Designing Application Frameworks and Evolving Object-Oriented Systems'', ''Proceedings of the Symposium on Object Oriented Programming Emphasizing Practical Applications (SOOPPA)'' September, 1990, ACM by William F. Opdyke and Ralph E. Johnson William Opdyke's Ph.D. thesis on "Refactoring Object-Oriented Framework", University of Illinois, was published in 1992 [http://martinfowler.com/bliki/EtymologyOfRefactoring.html . The term "refactoring" was almost certainly used before then. Refactoring as a technique was definitely used before then. As a Neologism , it is clearly a reference to mathematical Factoring . REFERENCES SEE ALSO EXTERNAL LINKS
|