Skip to content

Commit 44a5673

Browse files
committed
1. 同步线程类:CoutDownLatch
2. JDK更新成1.8 #bysocket
1 parent 30f60c5 commit 44a5673

File tree

5 files changed

+5
-42
lines changed

5 files changed

+5
-42
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Java核心技术学习代码兼测试案例<br>
1414

1515
包目录:
1616

17+
├── org.rpc // 基于Java动态代理&Socket的简单RPC实现
18+
=================华丽的分割线=================
1719
├── org.javacore.base // Java基础必备
1820
├── org.javacore.collection // Java集合
1921
├── org.javacore.collection.list // Java集合List

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<groupId>org.apache.maven.plugins</groupId>
1313
<artifactId>maven-compiler-plugin</artifactId>
1414
<configuration>
15-
<source>1.7</source>
16-
<target>1.7</target>
15+
<source>1.8</source>
16+
<target>1.8</target>
1717
</configuration>
1818
</plugin>
1919
</plugins>

src/org/javacore/thread/join/JoinTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static void main(String[] args) throws InterruptedException {
1313

1414
//可以注释其中一个加深理解
1515
t1.join();
16-
t2.join();
16+
//t2.join();
1717

1818
System.out.println("ending all");
1919
}

src/org/jee/redis/RedisPing.java

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/org/jee/redis/RedisString.java

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)