Files
OnJava8/docs/book/GLOSSARY.md
2019-05-03 23:59:16 +08:00

12 lines
621 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## 词汇表
| 词汇 | 解释 |
| ----------------| ----------|
| **OOP** (*Object-oriented programming*) | 面向对象编程,一种编程思维模式和编程架构|
| **UML** (*Unified Modeling Language*) | 统一建模语言,类图 |
| **Aggregation** | 聚合,关联关系的一种,是强的关联关系|
| **Composition** | 组合,关联关系的一种,是比聚合关系强的关系 |
| **STL***the Standard Template Library*| C++ 标准模板库|
| **Fibonacci Sequence**| [斐波那契数列](https://zh.wikipedia.org/wiki/斐波那契数列),又称黄金分割数列 |