About 921 results
Open links in new tab
  1. What Are Code Smells? (Examples With Solutions.) - Built In

    Jun 12, 2025 · Summary: Code smells signal poor code structure that may lead to bugs or maintenance issues. Common examples include duplicate code, dead code and god objects. Prevent them by …

  2. Understanding Code Smells | How to Find & Eliminate Them

    Some common examples of code smells include issues such as large classes and long methods – i.e. one function, trying to do too much, or methods that are long to understand. Another example is …

  3. Code Smells: A General Introduction and Their Types

    Jul 24, 2025 · Let's discuss the types of code smell and some tips to remove it from your code much cleaner, clear, and simpler to understand. Although there are more than a hundred of code smells. …

  4. Code Smells - Refactoring.Guru

    These smells mean that if you need to change something in one place in your code, you have to make many changes in other places too. Program development becomes much more complicated and …

  5. What Is Code Smell? 7 Examples Every New Developer Should Know

    Jul 11, 2025 · These are seven of the most common code smells that every new developer is likely to encounter. Each one comes with a simple explanation and a quick tip on how to fix or avoid it.

  6. What is a Code Smell? Common Examples & How to Fix Them

    Learn what code smells are, see common examples like Long Methods and God Classes, and discover how to refactor them for cleaner code.

  7. The Top 5 Nastiest Code Smells - The Coding Gopher

    Mar 24, 2026 · Learning to spot these smells—and knowing how to refactor them—is the difference between a junior developer and a seasoned engineer. Here is a deep dive into the top five code …

  8. How to find Code Smells - with examples | Leonardo Montini

    Oct 10, 2022 · One of the reasons why it’s hard to get a universal definition is because code smells can vary depending on the language and on the context. There can’t be a standard list that applies …

  9. Understanding Code Smells: Examples of Poor Coding Practices

    Jun 3, 2025 · In this article, we will explore what code smells are, why they matter, and how recognizing them can elevate your craft as a software developer. Code smells often emerge when general...

  10. How to identify and fix code smells? - DEV Community

    Nov 16, 2023 · While they don't directly affect the functioning of the program, they can make the code harder to maintain and extend. Let's delve into the first five common code smells, understand their …