About 7,570,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 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. Code generation "Quick Actions" in Visual Studio 2022 ... - Stack …

    Jan 23, 2023 · Typically when I implement an interface or write code for which usings are missing it is possible to press Ctrl+. (or right click and press 'Quick Actions and Refactorings...') to get a menu of

  4. refactoring - What's the best way to refactor a method that has too ...

    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 down into separate …

  5. refactoring - When is a function too long? - Stack Overflow

    Here is a list of red-flags (in no particular order) that could indicate that a function is too long: Deeply nested control structures: e.g. for-loops 3 levels deep or even just 2 levels deep with nested if …

  6. 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 …

  7. Refactor rename broken in Intellij IDEA - Stack Overflow

    There is no way to turn refactoring off in the settings. My guess is that the project's cache/indexes are corrupted. I had a case once where refactoring, especially renames, stopped working. A re-index …

  8. refactoring - Best practices for turning jupyter notebooks into python ...

    Aug 24, 2015 · Jupyter (iPython) notebook is deservedly known as a good tool for prototyping the code and doing all kinds of machine learning stuff interactively. But when I use it, I inevitably run into the foll...

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

    Refactoring a God Class is a complex task, as this disharmony is often a cumulative effect of other disharmonies that occur at the method level. Therefore, performing such a refactoring requires …

  10. 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 …