Flex:如何通过接口实现松耦合?
我在几个不同的地方查过这个,但说实话,我不太明白。我知道什么是松散耦合,但不知道 Flex 中的接口如何帮助实现它?
Ive looked this up in a few different locations, but to be honest, i dont really get it. I get what loose coupling is, but not how interfaces in Flex would help to achieve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为 OOP 中的一般最佳实践,接口编程并不依赖于特定的编程语言。无论是否灵活,当对象被类型化为接口(或抽象类)时,它们可以更容易地用替代实现替换。
As a general best-practice in OOP, programming to interfaces is not tied to a particular programming language. Flex or not, when objects are typed to interfaces (or abstract classes) they can more easily be replaced with alternative implementations.