About 7,660,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. 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 …

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

  5. refactoring - How much duplicated code do you tolerate? - Stack …

    Refactoring this kind of system either requires methods taking more generic objects than needed, followed by typechecking and casting, or else the class hierarchy needs to be rethought & …

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

  7. refactoring - In C# how many lines before a class should be …

    A good rule of thumb by is that I intelligently refactor any method over 50 lines. The count does not include comments and white space but actual code. The reason I also say intelligently is …

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

  9. State machine design pattern - Stack Overflow

    TLDR: Are there any known design pattern to represent a state machine configuration as code without the usage of goto statements? What are the possible issues with refactoring: { a: { titl...

  10. How do I refactor module name in Go? - Stack Overflow

    26 This feature is introduced in GoLand version 2021.1. You can invoke the Rename refactoring by pressing Shift+F6 on the module name in the go.mod file.