Skip to content

Commit a410b87

Browse files
committed
原型模式
1 parent 5b99073 commit a410b87

File tree

8 files changed

+71
-0
lines changed

8 files changed

+71
-0
lines changed

.idea/compiler.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

07-prototype/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
### 原型模式

07-prototype/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>java-design-patterns</artifactId>
7+
<groupId>com.jiuxian</groupId>
8+
<version>1.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<groupId>com.jiuxian</groupId>
13+
<artifactId>07-prototype</artifactId>
14+
</project>
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.jiuxian.definition;
2+
3+
/**
4+
* @author: liuzejun
5+
* *
6+
7+
* *
8+
* @date: 2019-05-28 13:56:18
9+
* *
10+
* @description: 场景类
11+
**/
12+
public class Main {
13+
14+
public static void main(String[] args) {
15+
//通过clone 创建的对象不会执行构造方法。
16+
PrototypeClass prototypeClass = new PrototypeClass();
17+
PrototypeClass clone = prototypeClass.clone();
18+
System.out.println(clone == prototypeClass);
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package com.jiuxian.definition;
2+
3+
/**
4+
* @author: liuzejun
5+
* *
6+
7+
* *
8+
* @date: 2019-05-28 15:00:37
9+
* *
10+
* @description: 原型模式通用源码
11+
**/
12+
public class PrototypeClass implements Cloneable {
13+
14+
public PrototypeClass() {
15+
System.out.println("init ...");
16+
}
17+
18+
@Override
19+
protected PrototypeClass clone() {
20+
try {
21+
return (PrototypeClass) super.clone();
22+
} catch (CloneNotSupportedException e) {
23+
//异常处理
24+
}
25+
return null;
26+
}
27+
}

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ java 设计模式 参考《设计模式之禅 第二版》
77
>03-abstract-factory 抽象工厂模式
88
>
99
>04-template-method 模板方法模式
10+
>
11+
>05-build 建造者模式
12+
>
13+
>06-proxy 代理模式
14+
>
15+
>07-prototype 原型模式
16+
>

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@
2525
<module>04-template-method</module>
2626
<module>05-build</module>
2727
<module>06-proxy</module>
28+
<module>07-prototype</module>
2829
</modules>
2930
</project>

0 commit comments

Comments
 (0)