随笔都是学习笔记
随笔仅供参考,为避免笔记中可能出现的错误误导他人,请勿转载。

创建一个Child类继承Wife,不写任何内容:

package entity;

public class Child extends Person{
}

 然后在Wife类中添加静态方法:

/**
     * 静态工厂方法
     * @return
     */
    public static Wife createChild(){
        Child child = new Child();
        child.setName("儿子");
        return child;
    }

然后xml配置:

 

 测试方法:

@Test
    public void fun3(){
        System.out.println("begin!");
        Wife wife = app.getBean("wife", Wife.class);
        System.out.println(wife);
    }

输出结果:

 

 

 

下面是非静态方法:

测试方法:

/**
     * 非静态工厂
     */
    @Test
    public void fun4(){
        System.out.println("begin!");
        Wife wife = app.getBean("wife", Wife.class);
        System.out.println(wife);
    }

新建一个工厂类:

package entity;

public class WifeFactory {
    public Wife createChild(){
        Child child = new Child();
        child.setName("儿子");
        return child;
    }
}

xml配置

 

 运行结果:

 

posted on 2022-05-26 16:52  时间完全不够用啊  阅读(63)  评论(0编辑  收藏  举报