- Clean Code in C#
- Jason Alls
- 202字
- 2021-06-18 18:28:09
Classes, Objects, and Data Structures
In this chapter, we will look at organizing, formatting, and commenting on classes. We will also look at writing clean C# objects and data structures that respect the Law of Demeter. In addition, we will look at immutable objects and data structures and the interfaces and classes that define immutable collections in the System.Collections.Immutable namespace.
We will cover the following broad topics:
- Organizing classes
- Commenting for document generation
- Cohesion and coupling
- The Law of Demeter
- Immutable objects and data structures
As you progress through this chapter, you will learn the following skills:
- How to effectively organize your classes using namespaces.
- Your classes will become smaller and more meaningful as you learn to program them with only a single responsibility.
- When it comes to writing your own APIs, you will be able to provide good developer documentation by providing comments that aid document generation tools.
- Any programs you write will be easy to modify and extend due to their high cohesion and low coupling.
- Finally, you will be able to apply the Law of Demeter and write and use immutable data structures.
So, let's start by looking at how we can effectively organize our classes by using namespaces.
推薦閱讀
- Python數據可視化:基于Bokeh的可視化繪圖
- Mastering Ember.js
- TypeScript實戰指南
- Visual C++應用開發
- ArcGIS By Example
- 微信小程序全棧開發技術與實戰(微課版)
- 零基礎學C語言第2版
- JavaScript程序設計:基礎·PHP·XML
- Puppet:Mastering Infrastructure Automation
- Akka入門與實踐
- Drupal Search Engine Optimization
- Access數據庫應用教程(2010版)
- Office VBA開發經典:中級進階卷
- Learning Network Programming with Java
- Learning WebRTC