Auto saved by Logseq

This commit is contained in:
Ryan 2023-06-15 21:27:21 +08:00
parent 332ae0c999
commit 008b5ec920

View file

@ -2000,8 +2000,13 @@
id:: 648adea3-e0aa-4145-888e-45d2711be5ae
- 模块化架构 Modular & integral architecture #flashcard
id:: 648adeaf-b4ef-4ae0-aac3-74b22ee2c63a
- ◦ 模块化架构 modular architecture 特点1.各个组件分别实现一个或多个功能 2.组件之间的关系是明确的,这种关系往往是实现一个产品功能的基础 ·Each chunk implements one or a few functions entirely. ·The interactions between chunks are well defined. ·Modular architecture has simplicity and reusability for a product family or platform. 理解:当每个功能都只被一个组件完成时,并且组件之间的配合十分完美时,这种架构允许在不改变的情况下只改变一组而不影响整体功能。也就是说各个组件可以单独设计
- ▪ 槽形模块架构 Slot-modular (the most common type) 每个接口都与于其它接口类型不同,产品中的组件不能互换 Each of the interfaces between chunks in a slot-modular architecture is of a different type from the others therefore the various chunks in the product cannot be interchanged 例子:汽车上的收音机接口与速度仪、仪表盘的接口都不同
- ◦ 模块化架构 modular architecture 特点: #flashcard
extra:: 理解:当每个功能都只被一个组件完成时,并且组件之间的配合十分完美时,这种架构允许在不改变的情况下只改变一组而不影响整体功能。也就是说各个组件可以单独设计
- 1.各个组件分别实现一个或多个功能Each chunk implements one or a few functions entirely. ·
- 2.组件之间的关系是明确的,这种关系往往是实现一个产品功能的基础 ·The interactions between chunks are well defined. ·Modular architecture has simplicity and reusability for a product family or platform.
- ▪ 槽形模块架构 Slot-modular (the most common type)
- 每个接口都与于其它接口类型不同, Each of the interfaces between chunks in a slot-modular architecture is of a different type from the others
- 产品中的组件不能互换 therefore the various chunks in the product cannot be interchanged 例子:汽车上的收音机接口与速度仪、仪表盘的接口都不同
- ▪ 总线模型 Bus-modular 有一个通用总线,其他组件通过同类型的接口连接到这个总线上 There is a common bus to which the other chunks connect via the same type of interface 例子:轨道照明
- ▪ 组合型模块架构 Sectional-modular 所有接口都是同类型的,但是没有一个所有组件都与之相联的元件。组装是通过将同样的接口相连接而完成的 1.All interfaces are of the same type, there is no single element to which all the other chunks attach 2.The assembly is built up by connecting the chunks to each other via identical interfaces 例子:分体沙发
- ▪ There are implications to the decisions you make about product architecture ·