菜鸟的博客

纵有疾风起,人生不言弃。

导航

2024年11月27日 #

软件设计-Tutorial25

摘要: 类图: ```mermaid classDiagram class Item { <<interface>> +accept(Visitor visitor) } class Book { -String title +getTitle() +accept(Visitor visitor) } cl 阅读全文

posted @ 2024-11-27 09:54 hhmzd233 阅读(1) 评论(0) 推荐(0) 编辑

软件设计-Tutorial24

摘要: 类图: ```mermaid classDiagram class DatabaseTemplate { <<abstract>> +final operateDatabase() #abstract connDB() +openDB() +useDB() +closeDB() } class SQ 阅读全文

posted @ 2024-11-27 08:54 hhmzd233 阅读(4) 评论(0) 推荐(0) 编辑