About 8,170,000 results
Open links in new tab
  1. What is refactoring and what is only modifying code?

    Martin Fowler's "Refactoring: Improving the Design of Existing Code" is perhaps THE reference: Refactoring is a controlled technique for improving the design of an existing code base. Its …

  2. What is refactoring? - Stack Overflow

    Refactoring is modifying existing code to improve its readability, re-usability, performance, extensibility and maintainability. Have you ever looked at code and thought, "Wow this is a …

  3. refactoring - "refactor refactor refactor your code." What does this ...

    Refactoring code is a process of cleaning up your code, reducing the clutter and improving the readability without causing any side effects or changes to features. Basically, you refactor by …

  4. Newest 'refactoring' Questions - Stack Overflow

    May 6, 2017 · Stack Overflow | The World’s Largest Online Community for Developers

  5. refactoring - When should you not refactor? - Stack Overflow

    May 1, 2013 · Has refactoring come to mean "Changing Code" in common context? Many answers suggest refactoring may break code, but it can't by the definition of refactoring! If it …

  6. refactoring - How do you refactor a God class? - Stack Overflow

    Feb 14, 2013 · thank you, but it was a trivial refactoring, you had in your god class only one method which was used outside, the rest was still internal, if you had different public methods …

  7. Refactor code into a subfunction in VS Code - Stack Overflow

    Jun 5, 2023 · If they're a built-in function or extension in VS Code to refactor any selected code into a subfunction? Or at least to analyse the code and show all dependencies/variables that …

  8. Refactor rename broken in Intellij IDEA - Stack Overflow

    Somehow, I managed to break my refactoring capabilities in Intellij IDEA 12. I have somehow disabled it for my project. Renaming a member through Shift+F6 doesn't work. The inline edit …

  9. Refactoring in Vim - Stack Overflow

    Jan 9, 2012 · Refactoring is WAY more than pattern matching, that's why IDE's are needed to automate this in a safely manner. Obviously, you can do it manually, but considering the …

  10. refactoring - What's the best way to refactor a method that has …

    Jan 20, 2011 · If the set of parameters can't be made into a meaningful object, that's probably a sign that Shniz is doing too much, and the refactoring should involve breaking the method …