- Expert C++
- Vardan Grigoryan Shunguang Wu
- 300字
- 2021-06-24 16:34:00
High-level details of objects
We deal with objects as entities representing the result of abstraction. We have already mentioned the role of the observer, that is, the programmer who defines the object based on the problem domain. The way the programmer defines this represents the process of abstraction. Let's take an example of an e-commerce marketplace and its products. Two different teams of programmers might have different views of the same product. The team that implements the website cares about the properties of the object that are essential to website visitors: buyers. The properties that we showed earlier in the Product struct are mostly meant for website visitors, such as the selling price, the rating of the product, and so on. Programmers that implement the website touch the problem domain and verify the properties that are essential to defining a Product object.
The team that implements the online tools that help manage the products in the warehouse cares about the properties of the object that are essential in terms of product placement, quality control, and shipment. This team shouldn't actually care about the rating of the product or even its price. This team mostly cares about the weight, dimensions, and conditions of the product. The following illustration shows the properties of interest:
The first thing that programmers should do when starting the project is to analyze the problem and gather the requirements. In other words, they should get familiar with the problem domain and define the project requirements. The process of analyzing leads to defining objects and their types, such as the Product we discussed earlier. To get proper results from analyzing, we should think in objects, and, by thinking in objects, we mean considering the three main properties of objects: state, behavior, and identity.
- DevOps for Networking
- Android Development with Kotlin
- Dependency Injection in .NET Core 2.0
- Spring Cloud、Nginx高并發核心編程
- Expert Android Programming
- R大數據分析實用指南
- Bootstrap 4 Cookbook
- Creating Mobile Apps with jQuery Mobile(Second Edition)
- GameMaker Essentials
- 新印象:解構UI界面設計
- 貫通Tomcat開發
- ASP.NET 4.0 Web程序設計
- 愛上C語言:C KISS
- 交互設計師成長手冊:從零開始學交互
- 你必須知道的.NET(第2版)