package Test;
public class Factory {
public static void main(String[] args) {
//使用者与被使用者产生高耦合,,依赖,当被使用者改变时候,会影响使用者。
//使用工厂模式来降低两者的依赖,创建Productfactory类
// Product phone = new Phone();
Product s=ProductFactory.getProduct("phone");
if (null!=s){
s.work();
}
}
}
class ProductFactory{
public static Product getProduct(String name){
if ("phone".equals(name)){
return new Phone();
}else if("Computer".equals(name)){
return new Computer();
}else{
return null;
}
}
}
interface Product{
public void work();
}
class Phone implements Product{
@Override
public void work() {
System.out.println("我生产手机");
}
}
class Computer implements Product{
@Override
public void work() {
System.out.println("我生产电脑");
}
}
java工厂模式的举例
最新推荐文章于 2024-09-20 16:51:04 发布