請教!如何使用Adapter pattern?
我现在自学JAVA,遇到1条题目现在有个ItemAControl 和 ItemBControl 的class
各自拥有1个class 来 产生 ItemA/B
如何使用adapter pattern 将 2个子系统 连结及使用?
令到可以在随意create itemA / itemB
而且能够统一管理
class ItemAControl {
create
search
update...method
}
class ItemA{
private int id;
private string name;
.....get set method
}
class ItemBControl {
create
search
update...method
}
adapter java
class ItemB{
private int number;
private string type;
.....get set method
}
补充:Java , Java相关