摘要: 如果让你写一个实现 1+1=? 的需求,你会怎么做? 第一步,定义一个接口。 public interface Calculator { Long add(Long a,Long b); } 第二步,实现接口 public class CalculatorImpl implements Calcul 阅读全文
posted @ 2020-09-01 22:34 丶Pz 阅读(262) 评论(0) 推荐(0) 编辑