About 50 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 essence …

  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 mess" or "this could …

  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. Refactoring SQL - Stack Overflow

    Mar 24, 2010 · Are there any formal techniques for refactoring SQL similar to this list here that is for code? I am currently working on a massive query for a particular report and I'm sure there's plenty of …

  5. Refactoring in Vim - Stack Overflow

    Jan 9, 2012 · Refactoring is very language-specific. You need to look for specific add-ons for each language you're interested in. You'll presumably find add-ons for some and not for others. If there's …

  6. refactoring - Why do we refactor? - Stack Overflow

    Refactoring is a central component in any agile software development methods. Unless you fully understand all the requirements and technical limitations of your project you can't have a complete …

  7. 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 breaks code, it's …

  8. How can I refactor file names in Visual Studio Code?

    Nov 21, 2016 · Is it possible to refactor the name of the files in a project and automatically update all the imports, without caring about breaking something each time a file name is changed? In the same …

  9. Newest 'refactoring' Questions - Stack Overflow

    Apr 6, 2026 · Refactoring questions may or may not be on-topic for Stack Overflow. Sign up to watch this tag and see more personalized content

  10. refactoring - Can I simultaneously refactor method argument lists in a ...

    Apr 23, 2024 · Changing the signature does not change the implementation so you want t have a refactoring that creates broken code at first. And if you do everything at the same time at some point …