软件设计 石家庄铁道大学信息学院

实验2:简单工厂模式
本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:
1、理解简单工厂模式的动机,掌握该模式的结构;
2、能够利用简单工厂模式解决实际问题。

[实验任务一]:女娲造人
使用简单工厂模式模拟女娲(Nvwa)造人(Person),如果传入参数M,则返回一个Man对象,如果传入参数W,则返回一个Woman对象,如果传入参数R,则返回一个Robot对象。请用程序设计实现上述场景。
实验要求:
1.画出对应的类图;
2.提交源代码;
3.注意编程规范。

1.MainClass.java
package org.example;

import java.util.Scanner;

public class MainClass {

public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    System.out.print("请输入参数:");
    String s = scan.nextLine();
    try{
        Person p = Nvwa.printAnw(s);
        assert p != null;
        p.makePerson();
    }catch(Exception e){
        System.out.println("出错了,再检查一下吧");
    }
}

}
2.Man.java
package org.example;

public class Man implements Person{
public Man() {
}
public void makePerson(){
System.out.print("女娲造人----->造了男人");
}
}
3.Nvwa.java
package org.example;

public class Nvwa {

public Nvwa() {
}

public static  Person printAnw(String type ) {
    if(type.equalsIgnoreCase("M"))
    {
        return new Man();
    }else if(type.equalsIgnoreCase("W"))
    {
        return new Woman();
    }else if(type.equalsIgnoreCase("R"))
    {
        return new Robot();
    }else
    {
        return null;
    }
}

}
4.Person.java
package org.example;

public interface Person {
public void makePerson();
}

5.Robot.java
package org.example;

public class Robot implements Person {
public Robot() {
}
public void makePerson() {
System.out.print("女娲造人----->造了机器人");
}
}

6.Woman.java
package org.example;

public class Woman implements Person {
public Woman() {
}

public void makePerson() {

    System.out.print("女娲造人----->造了女人");

}

}

posted on 2024-10-10 20:55  许七安gyg  阅读(4)  评论(0编辑  收藏  举报
$(document).ready(function() { // 禁止右键 $(document).bind("contextmenu", function(){return false;}); // 禁止选择 $(document).bind("selectstart", function(){return false;}); // 禁止Ctrl+C 和Ctrl+A $(document).keydown(function(event) { if ((event.ctrlKey&&event.which==67) || (event.ctrlKey&&event.which==86)) { //alert("对不起,版权所有,禁止复制"); return false; } }); });