- 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.
- Android應用程序開發與典型案例
- JavaScript+DHTML語法與范例詳解詞典
- TensorFlow Lite移動端深度學習
- Linux C/C++服務器開發實踐
- The DevOps 2.4 Toolkit
- TradeStation交易應用實踐:量化方法構建贏家策略(原書第2版)
- 快人一步:系統性能提高之道
- D3.js By Example
- Angular應用程序開發指南
- C++程序設計教程
- Java高并發編程詳解:深入理解并發核心庫
- Lync Server Cookbook
- Testing Practitioner Handbook
- Instant Buildroot
- 軟件定義網絡:基于OpenFlow的SDN技術揭秘