design_modelbridge
Posted gg128
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了design_modelbridge相关的知识,希望对你有一定的参考价值。
1.桥接模式:可以使得两个不同接口的实现的不同组合
2.实例
public interface Brand { } public class Huasuo implements Brand{ } public interface Computer { } public class Desktop implements Computer{ private Brand brand; public Desktop(Brand brand) { super(); this.brand = brand; } } public class Client { public static void main(String[] args) { Desktop desktop = new Desktop(new Huasuo()); } }
以上是关于design_modelbridge的主要内容,如果未能解决你的问题,请参考以下文章