PicoContainer-Two minute tutorial

2008-02-23 10:11:32来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

转自:http://www.picocontainer.org/Two minute tutorial

Two minute tutorial
两分钟教程

Authors: Jon Tirsen

This very short tutorial should get you up to speed with PicoContainer in 2 minutes. It does not go into why you should do it, read the Five minute introduction for that.
这是一个非常简短的是你能够快速掌握微容器的两分钟教程.如果它仍然不能是你确定为什么要使用微容器,你可以继续阅读5分钟介绍.

Download and install

Download the jar file and include it in your classpath.

Write two simple components
两个简单的组件

public class Boy {

    public void kiss(Object kisser) {

        System.out.println("I was kissed by "   kisser);

    }

}
public class Girl {

    Boy boy;



    public Girl(Boy boy) {

        this.boy = boy;

    }



    public void kissSomeone() {

        boy.kiss(this);

    }

}

Assemble components
装配组件

MutablePicoContainer pico = new DefaultPicoContainer();

pico.reGISterComponentImplementation(Boy.class);

pico.registerComponentImplementation(Girl.class);
MutablePicoContainer API

Instantiate and use component
初始化并使用组件

Girl girl = (Girl) pico.getComponentInstance(Girl.class);

girl.kissSomeone();
getComponentInstance will look at the Girl class and determine that it needs to create a Boy instance and pass that into the constructor to create a Girl. The Boy is created and then the Girl.
getComponentInstance方法将会查找Girl类和匹配Boy类并创建它然后传入构造方法初始化一个Girl实例.先创建的Boy然后是Girl.

PicoContainer API

The Girl does not reach out to find herself a Boy but instead is provided one by the container. This is called the Hollywood Principle or "Don't call us we'll call you".
Girl类没有自己去调用这个Boy类而是通过容器提供的,这就是著名的好莱坞规则“不要找我,我会找你的“.

Introduce an interface for the dependency
给从属类一个接口

Change the Boy class to implement a Kissable interface and change the Girl class to depend on Kissable instead.
将Boy类实现一个Kissable接口并且改变Girl类去引用一个Kissable对象.

public
interface Kissable {
void kiss(Object kisser);
}

public class Boy implements Kissable {

    public void kiss(Object kisser) {

        System.out.println("I was kissed by "   kisser);

    }

}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:[引用] 既然有了Swing, 那为什么还要SWT?

下一篇:JDBC连接MYSQL