您的位置:首页 > 其它

Bridge

2004-08-30 22:44 316 查看
Benefits:
It enables the separation of implementation from the interface.
It improves extensibility.
It allows the hiding of implementation details from the client.

Applicable Scenarios:
You want to avoid a permanent binding between the functional abstraction and its implementation.
Both the functional abstraction and its implementation need to be extended using subclasses.
Changes to the implementation should not impact the client (not even a recompile).

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: