Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. // 工厂接口,抽象工厂
  2. interface IFactory {
  3. public IFridge createFridge();
  4. public IAirCondition createAirCondition();
  5. }
  6. public class AbstractFactory {
  7.  
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement