/**
* 定义一个函数式接口
* @param <T>
*/
@FunctionalInterface
public interface ISellIPad<T> {
T getSellIPadInfo();
}
函数式接口实现类
HuaWeiSellIPad.java
java复制代码
public class HuaWeiSellIPad implements ISellIPad<String>{
@Override
public String getSellIPadInfo() {
System.out.println("华为IPad:getSellIPadInfo");
return "华为IPad";
}
}
HuaWeiSellIPad.java
java复制代码
public class XiaomiSellIPad implements ISellIPad<String>{
@Override
public String getSellIPadInfo() {
System.out.println("小米IPad:getSellIPadInfo");
return "小米IPad";
}
}
工厂类封装
SellIPadFactory.java
java复制代码
import java.util.HashMap;
import java.util.Map;
import java.util.function.Supplier;
/**
* 创建一个工厂类
*/
public class SellIPadFactory {
final static Map<String, Supplier<ISellIPad>> map = new HashMap<>();
static {
map.put("xiaomi", XiaomiSellIPad::new);
map.put("huawei", HuaWeiSellIPad::new);
}
public static ISellIPad getInstance(String ipadName) {
Supplier<ISellIPad> iPadSupplier = map.get(ipadName);
if(iPadSupplier != null) {
return iPadSupplier.get();
}
throw new IllegalArgumentException("No Such ISellIPad " + ipadName);
}
}
实际应用
PinDuoDuoShopV3.java
java复制代码
public class PinDuoDuoShopV3 {
public void order(String pcName){
//函数式编程的好处:减少可变量的声明,能够更好的利用并行,代码更加简洁可读。
ISellIPad<String> sellIPad = SellIPadFactory.getInstance(pcName);
String getIpad = sellIPad.getSellIPadInfo();
System.out.println("PinDuoDuoShopV3=>order=>执行完毕=>"+getIpad);
}
}