博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java之工厂模式
阅读量:5311 次
发布时间:2019-06-14

本文共 613 字,大约阅读时间需要 2 分钟。

interface Fruit {

    void eat();
}

class Apple implements Fruit {

    public void eat() {

        System.out.println("I am eating apple.");
    }

}

class Orange implements Fruit {

    public void eat() {

        System.out.println("I am  eating orange.");
    }

}

class Factory {

    public Fruit getInstance(String className) {
        Fruit f = null;
        if ("apple".equals(className)) {
            f = new Apple();
        } else {
            f = new Orange();
        }
        return f;
    }
}

public class InterfaceDemo04 {

    public static void main(String[] args) {
        Factory factory = new Factory();
        Fruit f = null;
        f = factory.getInstance("apple");
        f.eat();
    }
}

转载于:https://www.cnblogs.com/vonk/p/3889562.html

你可能感兴趣的文章
Gym 100247I Meteor Flow(优先队列)
查看>>
bootstrap 手风琴效果
查看>>
217 Contains Duplicate (Array)
查看>>
对路径" "的访问被拒绝XP中IIS下asp.net程序错误提示解决方案
查看>>
PHPEXCEL 小记
查看>>
区域生长算法(附MATLAB代码实现)
查看>>
Python类中的__init__() 和 self 的解析
查看>>
Windows下Git多账号配置,同一电脑多个ssh-key的管理
查看>>
jQuery绑定事件的四种基本方式
查看>>
数组--冒泡排序法
查看>>
.NET 中list和数组与字符串的相互转换
查看>>
7月11日实习日志
查看>>
classmethod和staticmethod
查看>>
MapReduce源码分析之Task中关于对应TaskAttempt存储Map方案的一些思考
查看>>
python中的__all__和__slots__
查看>>
【题解】SHOI2014概率充电器
查看>>
006_Python3 数字(Number)
查看>>
SVN发布网站
查看>>
实现一个可host asp.net程序的小型IIS(Cassinidev介绍)
查看>>
计算机加入域vbs脚本
查看>>