-
实例化:A类依赖于B类。
javascriptclass B { doSth () { } } class A { constructor () {} run () { const b = new B() b.doSth() } } new A().run()
-
委托:A对象依赖于B对象。
javascriptclass B { doSth () { } } const b = new B() class A { constructor () {} run () { b.doSth() } } new A().run()
-
聚合:A对象和B对象是"has-a"关系。
javascriptclass Student { constructor(name) { this.name = name } } class Classroom { constructor() { this.students = [] } addStudent(student) { this.students.push(student) } } let student1 = new Student('Alice') let student2 = new Student('Bob') let classroom = new Classroom() classroom.addStudent(student1) classroom.addStudent(student2)
-
组合:A对象和B对象是"is-a"关系。
javascriptclass Creature { constructor(name) { this.name = name } } class Eye { constructor(color) { this.color = color } } class Human extends Creature { constructor() { super('Human') this.leftEye = new Eye('blue') this.rightEye = new Eye('brown') } }
-
继承:A类和B类是"is-a"关系。
OMT画图的五种结构表达方式
月度银墙2023-08-21 10:16
相关推荐
田梓燊7 小时前
湘潭大学软件工程算法设计与分析考试复习笔记(六)雾江流10 小时前
我的电视 2.2.6 | 稳定高清的电视直播软件JoyousHorse10 小时前
单体架构、集群架构和分布式架构概述车载诊断技术21 小时前
电子电气架构 -- ASIL D安全实现策略雾江流2 天前
畅听FM 3.0.0 | 很有果味的电台软件,超多FM电台,支持播放本地音乐m0_547486662 天前
软件工程复习知识点m0_547486662 天前
最新《软件工程》选择题及答案J老熊3 天前
JavaFX:简介、使用场景、常见问题及对比其他框架分析The_Ticker3 天前
CFD平台如何接入实时行情源代码欢乐豆5 天前
第12章小测