摘要: interface clothFactory{ void productCloth(); } class NikeClothFactory implements clothFactory{ @Override public void productCloth() { System.out.println("Nike生产了衣服"); } } ... 阅读全文
posted @ 2019-10-26 22:14 MagicAsa 阅读(103) 评论(0) 推荐(0)