Maison > interface Web > js tutoriel > le corps du texte

La règle d'or du code propre : les fonctions doivent faire une chose

Patricia Arquette
Libérer: 2024-10-07 18:19:31
original
939 Les gens l'ont consulté

The Golden Rule of Clean Code: Functions Should Do One Thing

In the world of software engineering, there's one principle that stands above the rest: Functions should do one thing, and do it well. This concept, often referred to as the Single Responsibility Principle (SRP), is a cornerstone of clean, maintainable code.

Why is this important?

When functions have a single responsibility:

  1. They're easier to understand and reason about
  2. Testing becomes simpler and more focused
  3. Refactoring is less risky and more straightforward
  4. Code reusability improves dramatically
  5. Debugging becomes less of a headache

Let's look at an example to illustrate this principle in action.

Bad Practice: Multi-responsibility Function

Consider this function that emails clients:


function emailClients(clients) {
  clients.forEach(client => {
    const clientRecord = database.lookup(client);
    if (clientRecord.isActive()) {
      email(client);
    }
  });
}


Copier après la connexion

This function is doing several things:

  1. Iterating over clients
  2. Looking up each client's record
  3. Checking if the client is active
  4. Sending emails to active clients

While it might seem efficient to have all this in one place, it makes the function harder to maintain and test.

Good Practice: Single Responsibility Functions

Now, let's refactor this into smaller, focused functions:


function emailActiveClients(clients) {
  clients.filter(isActiveClient).forEach(email);
}

function isActiveClient(client) {
  const clientRecord = database.lookup(client);
  return clientRecord.isActive();
}


Copier après la connexion

In this refactored version:

  • emailActiveClients focuses on the high-level task of emailing active clients
  • isActiveClient handles the specifics of determining if a client is active

This separation of concerns makes each function easier to understand, test, and potentially reuse in other parts of your codebase.

Benefits of This Approach

  1. Readability: The code tells a clear story. Anyone reading emailActiveClients can quickly understand its purpose without getting bogged down in implementation details.
  2. Testability: You can now easily write separate tests for the email sending logic and the client activity check.
  3. Flexibility: If you need to change how active clients are determined, you only need to modify the isActiveClient function.
  4. Reusability: The isActiveClient function can now be used elsewhere in your codebase if needed.

Conclusion

Embracing the "Functions should do one thing" principle might feel verbose at first, but the long-term benefits to your codebase's maintainability and your team's productivity are immense. As you write and refactor code, always ask yourself: "Is this function doing more than one thing?" If the answer is yes, it's time to break it down!

Remember, clean code isn't just about making things work—it's about making things work elegantly and sustainably. Happy coding!

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:dev.to
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!