你能装饰一个黑盒子吗?
我有一个关于装饰器模式的快速、非常无知的问题。如果我有一个名为 BlackBox 的类,我无法以任何方式对其进行编辑 - 无法添加接口、无法使任何方法虚拟等 - 可以使用装饰器模式来装饰该对象吗?如果是这样,怎么办?
I have a quick, very uninformed question about the Decorator pattern. If I have a class called BlackBox that I cannot edit in any way - can't add an interface, can't make any of the methods virtual, etc. - can this object be decorated using the Decorator pattern? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为其创建一个包装器(即实现 适配器 模式)并装饰适配器。
You can create a wrapper for it (i.e., implement the Adapter pattern) and decorate the adapter.