美文网首页
Boolan_C++_Composition

Boolan_C++_Composition

作者: FlyTheKite | 来源:发表于2017-08-03 22:02 被阅读15次

Composition, 复合,

表示 has-a

Adapter , 改造、 适配、 配接。
变压器 是 一种。

Compositions关系 下 的 构造 和 析构,

  • 构造 由内而外,
Container:: Container(...): Component(){
...
};

Component()
自己写, 或者 调用 默认的。

  • 析构 由外而内。

Delegation 委托,

Composition by reference.

StringRep , StringRepresentation
一个 指针 , 指向 强大的 属性。

用指针, 也是 by reference,
没有 by pointer.

Delegation,

用指针 相联, 两个 对象 的 生命周期 不一致。

主对象 只是 对外接口。 Handle

功能实现, 都放在 右边 指针 对象中。 Body

Body 变, handle 不变。改的地方 少。
编译 防火墙。

pImpl , Pointer To Implementation.

内容 共享, Reference Counting.

Copy On Write

相关文章

  • Boolan_C++_Composition

    Composition, 复合, 表示 has-a Adapter , 改造、 适配、 配接。变压器 是 一种。 ...

网友评论

      本文标题:Boolan_C++_Composition

      本文链接:https://www.haomeiwen.com/subject/kilakxtx.html