We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2381ad7 commit 4399523Copy full SHA for 4399523
src/com/company/factory/summary.txt
@@ -3,6 +3,9 @@
3
工厂方法模式是创建型设计模式之一,是一种简单的模式,也是使用很广泛的一种设计模式。
4
Android中的Activity的onCreate等方法都可以看成是工厂模式的例子。setContentView()
5
中可以设置各种view返回给framework进行处理
6
+又如:在数据结构中:ArrayList和HashMap中都运用了工厂模式
7
+以List和Set为例,List和Set都继承于Collection接口,Collection接口继承于Iterale接口。在两个具体类实现
8
+这个类的过程中就用了工厂方法。
9
10
定义:
11
0 commit comments