Composite aggregation (composition) is a “strong” form of aggregation with the following characteristics:

  • it is binary association,
  • it is a whole/part relationship,
  • a part could be included in at most one composite (whole) at a time, and
  • if a composite (whole) is deleted, all of its composite parts are “normally” deleted with it.

Note, that UML does not define how, when and specific order in which parts of the composite are created. Also, in some cases a part can be removed from a composite before the composite is deleted, and so is not necessarily deleted as part of the composite.

Notation

Composite aggregation is depicted as a binary association decorated with a filled black diamond at the aggregate (whole) end.
关系::合成聚合 Composite aggregation - 图1
Folder could contain many files, while each File has exactly one Folder parent.
If Folder is deleted, all contained Files are deleted as well.

When composition is used in domain models, both whole/part relationship as well as event of composite “deletion” should be interpreted figuratively, not necessarily as physical containment and/or termination. UML specification needs to be updated to explicitly allow this interpretation.
关系::合成聚合 Composite aggregation - 图2
Hospital has 1 or more Departments, and
each Department belongs to exactly one Hospital.
If Hospital is closed, so are all of its Departments.

Note, that though it seems odd, multiplicity of the composite (whole) could be specified as 0..1 (“at most one”) which means that part is allowed to be a “stand alone”, not owned by any specific composite.
关系::合成聚合 Composite aggregation - 图3
Each Department has some Staff, and each Staff could be
a member of one Department (or none). If Department is closed,
its Staff is relieved (but excluding the “stand alone” Staff).

Mistakes

Composition is asymmetric relationship - only one end of association is allowed to be marked as shared or composite aggregation. Both UML 1.x and 2.x don’t allow a diamond to be attached to both ends of association line.

https://www.uml-diagrams.org/composition.html