Day 54 of #100DaysOfLearning
“Good Code, Bad Code: Think like a Software Engineer” by Tom Long

Day 54 of #100DaysOfLearning

This is a continuation of the article "Good Code, Bad Code: Think like a Software Engineer" that I read yesterday.

Six pillars of code quality

  • Readability: Write code that’s easy to understand.
  • Defensive Coding: Minimize unexpected behavior.
  • Avoiding Misuse: Write code that’s hard to misuse.
  • Modularity: Break code into manageable modules.
  • Reusability: Design code for reuse and generality.
  • Testability: Write testable code and test it effectively.

Readability

Definition

Readability refers to how easily a human can comprehend and follow the logic of your code. It’s about writing code that communicates its purpose clearly.

Importance

Code is read more often than it’s written. Readable code benefits not only the original author but also colleagues, maintainers, and future developers.

Key Aspects

  • Consistent Formatting: Use consistent indentation, naming conventions, and spacing. Follow the style guide of your language or project.
  • Meaningful Variable Names: Choose descriptive names for variables, functions, and classes. Avoid cryptic abbreviations.
  • Comments: Explain complex logic, assumptions, and edge cases using comments. Don’t overdo it; comments should complement code, not duplicate it.
  • Avoiding Magic Numbers and Strings: Replace hard-coded values with named constants or variables.
  • Short Functions: Aim for concise functions that perform one clear task. Long functions are harder to follow.
  • Avoiding Nested Logic: Deeply nested if statements or loops reduce readability. Refactor complex logic into smaller pieces.
  • Whitespace: Use whitespace to separate logical sections of code. Blank lines improve visual separation.

Testing Readability

  • Pair Programming: Collaborate with others to gauge readability.
  • Rubber Duck Debugging: Explain your code to an imaginary rubber duck; if it’s hard to explain, it’s likely hard to read.
  • Code Reviews: Peer reviews catch readability issues early.

Common Pitfalls

  • Overly Clever Code: Avoid overly complex or cryptic solutions.
  • Ignoring Style Guides: Consistency matters; follow established conventions.
  • Neglecting Refactoring: Regularly refactor to improve readability.

Long-Term Perspective

Prioritize readability over cleverness. Code is a communication tool.

Defensive Coding

Definition

Defensive coding is a practice where developers anticipate and handle potential issues, errors, and edge cases proactively. The goal is to minimize unexpected behavior and ensure that the software remains robust and reliable.

Why Is It Important?

  • Reliability: Defensive code reduces the likelihood of crashes, bugs, and unexpected behavior.
  • Maintainability: Code that handles edge cases is easier to maintain and extend.
  • Security: Defensive coding helps prevent security vulnerabilities.

Key Aspects

  • Input Validation: Validate user input thoroughly. Ensure that data meets expected formats and constraints.
  • Boundary Checks: Verify that values fall within valid ranges (e.g., array indices, numeric bounds).
  • Exception Handling: Use try-catch blocks (or equivalent) to handle exceptions gracefully. Avoid unhandled exceptions that crash the program.
  • Null and Undefined Values: Check for null, undefined, or missing values before using them.
  • Resource Management: Properly release resources (memory, file handles, network connections) to prevent leaks.
  • Logging and Monitoring: Log errors, warnings, and unexpected conditions. Monitor system behavior.

Testing for Defensive Code

  • Unit Tests: Verify that edge cases and error conditions are handled correctly.
  • Static Analysis Tools: Use linters and analyzers to catch potential issues.
  • Code Reviews: Peer reviews help identify gaps in defensive coding.

Common Pitfalls

  • Assuming Valid Input: Always validate input, even if it seems obvious.
  • Ignoring Exceptions: Don’t suppress exceptions; handle them appropriately.
  • Memory Leaks: Properly release resources (e.g., close files, free memory).
  • Overlooking Edge Cases: Consider all possible scenarios.

Long-Term Perspective

Defensive coding pays off during maintenance and when unexpected scenarios arise.

Avoiding Misuse

Definition

This principle emphasizes designing code in a way that discourages incorrect or unintended usage. By making the right way easy and the wrong way difficult, we reduce the chances of misuse.

Why Is It Important?

  • Safety: Misused code can lead to security vulnerabilities, data corruption, or system failures.
  • Maintainability: Code that’s hard to misuse is easier to maintain because it follows clear patterns.
  • Developer Experience: A well-designed API or library enhances the developer experience.

Key Aspects

  • Clear Interfaces: Design APIs, functions, and classes with clear and intuitive interfaces. Make correct usage obvious.
  • Constraints and Validations: Enforce constraints (e.g., input validation) to prevent misuse.
  • Documentation: Provide comprehensive documentation, including examples and usage guidelines.
  • Naming: Choose descriptive names for functions, variables, and parameters.
  • Avoiding Ambiguity: Eliminate ambiguity in behavior or semantics.
  • Consistency: Follow established conventions and patterns.

Testing for Misuse

  • Unit Tests: Verify that code behaves as expected under valid and invalid conditions.
  • Integration Tests: Test interactions between components.
  • Boundary Testing: Check edge cases and boundary conditions.

Common Pitfalls

  • Assuming Users Know Everything: Don’t assume users understand your code implicitly.
  • Overly Flexible APIs: Balance flexibility with safety.
  • Lack of Examples: Provide clear usage examples.
  • Ignoring Edge Cases: Consider all possible scenarios.

Long-Term Perspective

Prioritize usability and correctness over cleverness.

Modularity

Definition

Modularity is the practice of dividing a software system into smaller, self-contained units (modules) that perform specific tasks. Each module has a clear purpose and interacts with other modules through well-defined interfaces.

Why Is It Important?

  • Organization: Modularity simplifies code organization. Each module focuses on a specific aspect of functionality.
  • Maintenance: Smaller modules are easier to maintain, debug, and enhance.
  • Reusability: Modular code can be reused across projects or within the same project.

Key Aspects:

  • Single Responsibility Principle (SRP): Each module should have a single responsibility or reason to change. Avoid “god” modules that do too much.
  • Encapsulation: Hide implementation details within modules. Expose only necessary interfaces.
  • Dependencies: Minimize dependencies between modules. High coupling leads to maintenance challenges.
  • Interfaces: Clearly define how modules interact (e.g., function signatures, APIs).
  • Layered Architecture: Divide code into layers (e.g., presentation, business logic, data access) for better separation of concerns.

Testing for Modularity

  • Unit Tests: Test individual modules in isolation.
  • Integration Tests: Verify interactions between modules.
  • Code Reviews: Assess module boundaries, responsibilities, and interfaces.

Common Pitfalls

  • Monolithic Code: Avoid lumping everything into a single file or function.
  • Tight Coupling: Modules should not rely too heavily on each other.
  • Overengineering: Don’t create excessive modules for trivial functionality.

Long-Term Perspective

Prioritize modularity from the start. Refactor as needed to maintain a modular architecture.

Reusability

Definition

Reusability refers to creating code that can be easily reused across different parts of a project or even in other projects. It involves designing components, functions, and libraries in a way that promotes flexibility and adaptability.

Why Is It Important?

  • Efficiency: Reusing existing code saves development time and effort.
  • Consistency: Consistent functionality across different parts of an application improves user experience.
  • Maintenance: Reusable code is easier to maintain because changes propagate to all instances.

Key Aspects

  • Abstraction: Abstract common functionality into reusable components. Hide implementation details behind well-defined interfaces.
  • Functions and Libraries: Create functions or libraries that perform specific tasks (e.g., sorting, validation, logging).
  • Parameterization: Design functions with parameters to customize behavior (e.g., sorting order, filtering criteria).
  • Avoiding Hardcoding: Replace fixed values with parameters or configuration settings.
  • Design Patterns: Learn and apply common design patterns (e.g., Singleton, Factory, Observer) that promote reusability.

Testing for Reusability

  • Unit Tests: Verify that reusable components work correctly.
  • Integration Tests: Test how components interact with each other.
  • Code Reviews: Assess whether code adheres to reusability principles.

Common Pitfalls

  • Overengineering: Don’t create overly complex abstractions for simple tasks.
  • Ignoring Reusability: Sometimes developers focus on solving immediate problems without considering future reuse.
  • Tight Coupling: Avoid dependencies that make components hard to extract and reuse.

Long-Term Perspective

Prioritize reusability even if it requires a bit more effort upfront.

Testability

Definition

Testability refers to designing code in a way that makes it easy to write tests (unit tests, integration tests, etc.) and ensures that those tests effectively validate the correctness of the software.

Why Is It Important?

  • Quality Assurance: Effective testing helps catch bugs, regressions, and unexpected behavior early.
  • Maintenance: Testable code is easier to refactor and modify without breaking existing functionality.
  • Collaboration: Testing facilitates collaboration among team members.

Key Aspects

  • Decoupling: Reduce dependencies between components. Isolate units of code for testing.
  • Dependency Injection: Pass dependencies (e.g., database connections, external services) as parameters rather than hardcoding them.
  • Separation of Concerns: Divide code into distinct layers (presentation, business logic, data access) for targeted testing.
  • Mocking and Stubbing: Use mock objects or stubs to simulate external dependencies during testing.
  • Clear Interfaces: Well-defined interfaces make it easier to write test cases.
  • Code Coverage: Aim for high test coverage to ensure critical paths are tested.

Testing for Testability

  • Unit Tests: Validate that individual units (functions, classes) can be tested in isolation.
  • Test Frameworks: Use testing frameworks (e.g., unittest, pytest, Jest) to organize and run tests.
  • Code Reviews: Assess whether code design supports effective testing.

Common Pitfalls

  • Tightly Coupled Code: High coupling makes testing difficult.
  • Global State: Avoid relying on global variables or shared state.
  • Untestable Components: Some designs (e.g., monolithic controllers) hinder testability.
  • Ignoring Edge Cases: Ensure tests cover edge cases and boundary conditions.

Long-Term Perspective

Prioritize testability from the beginning. Refactor as needed to improve test coverage.

Next Action

Writing good code is like crafting art. It requires a combination of knowledge, practice, and continuous learning. I'm believing in keeping in mind with these things:

Learning

Stay curious and learn new concepts regularly. Technology evolves rapidly, so keeping up-to-date is crucial. Read books, take online courses, and explore new programming languages.

Practice

Just like any skill, practice makes perfect. Write code daily, work on small projects, and participate in coding challenges. The more you practice, the better you’ll become.

Problem-Solving

  1. Coding is about solving problems. Break down complex tasks into smaller steps, analyze requirements, and design efficient solutions.

Read Code

Study other people’s code. Read open-source projects, learn from experienced developers, and understand different coding styles.

Code Reviews

  1. Seek feedback from peers. Code reviews help you learn from mistakes and improve your code quality.

Documentation

Write clear comments and documentation. Good code is not just about functionality; it’s also about readability and maintainability.

Every line of code you write is an opportunity to learn and improve. Happy coding! ?

要查看或添加评论,请登录

社区洞察

其他会员也浏览了