java设计模式总结

1.适配器模式Adapter Pattern

主要用于listview等列表控件,因为这些控件需要大量的数据源,一般为array,或者list

为了兼容这些不同的array和list,就需要用一个中间的接口,

比如getCount是获取列表数目的接口

void getCount(){

    list.count();

}

或者

void getCount(){

    array.count();

}

这样就不需要任何东西,来适配这个listview控件。

你可能感兴趣的:(java设计模式总结)