Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在经历这里描述的工厂方法模式。我不太明白标记 from ApplicationtoDocument和 from MyApplicationto的箭头的含义MyDocument。谁能帮助我理解这个符号。
Application
Document
MyApplication
MyDocument
Application和之间的关系Document是一个Aggregation。这意味着一个Application(整体)包含Documents(部分)。
Documents
MyApplication和之间的关系MyDocument是Dependency。这意味着当 MyDocument 发生变化时,MyApplication 可能会发生变化。在这种情况下,它是一个 <> 依赖,即MyApplication使用MyDocument