Skip to content

Commit efe92cf

Browse files
committed
see 12/09 log
1 parent be520ff commit efe92cf

File tree

6 files changed

+768
-752
lines changed

6 files changed

+768
-752
lines changed

readme.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import groovy.transform.Field
33
@Field LINE_SEP = System.getProperty("line.separator")
44
@Field LONG_SPACE = " "
55

6-
task readmeTask {
6+
task readmeTask << {
77
def readmeCN = file("./utilcode/README-CN.md")
88
def readmeEng = file("./utilcode/README.md")
99
readmeOfUtilCode2Eng(readmeCN, readmeEng)

subutil/README-CN.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
```
1010
copyText : 复制文本到剪贴板
1111
getText : 获取剪贴板的文本
12-
copyUri : 复制uri到剪贴板
13-
getUri : 获取剪贴板的uri
12+
copyUri : 复制 uri 到剪贴板
13+
getUri : 获取剪贴板的 uri
1414
copyIntent: 复制意图到剪贴板
1515
getIntent : 获取剪贴板的意图
1616
```
1717

1818
* ### 定位相关 -> [LocationUtils.java][location.java] -> [Demo][location.demo]
1919
```
20-
isGpsEnabled : 判断Gps是否可用
20+
isGpsEnabled : 判断 Gps 是否可用
2121
isLocationEnabled: 判断定位是否可用
22-
openGpsSettings : 打开Gps设置界面
22+
openGpsSettings : 打开 Gps 设置界面
2323
register : 注册
2424
unregister : 注销
2525
getAddress : 根据经纬度获取地理位置
@@ -42,19 +42,19 @@ getSurnameFirstLetter: 根据名字获取姓氏的首字母
4242

4343
* ### 线程池相关 -> [ThreadPoolUtils.java][thread_pool.java]
4444
```
45-
ThreadPoolUtils : ThreadPoolUtils构造函数
45+
ThreadPoolUtils : ThreadPoolUtils 构造函数
4646
execute : 在未来某个时间执行给定的命令
4747
execute : 在未来某个时间执行给定的命令链表
4848
shutDown : 待以前提交的任务执行完毕后关闭线程池
4949
shutDownNow : 试图停止所有正在执行的活动任务
5050
isShutDown : 判断线程池是否已关闭
5151
isTerminated : 关闭线程池后判断所有任务是否都已完成
5252
awaitTermination : 请求关闭、发生超时或者当前线程中断
53-
submit : 提交一个Callable任务用于执行
54-
submit : 提交一个Runnable任务用于执行
53+
submit : 提交一个 Callable 任务用于执行
54+
submit : 提交一个 Runnable 任务用于执行
5555
invokeAll, invokeAny : 执行给定的任务
56-
schedule : 延迟执行Runnable命令
57-
schedule : 延迟执行Callable命令
56+
schedule : 延迟执行 Runnable 命令
57+
schedule : 延迟执行 Callable 命令
5858
scheduleWithFixedRate : 延迟并循环执行命令
5959
scheduleWithFixedDelay: 延迟并以固定休息时间循环执行命令
6060
```

0 commit comments

Comments
 (0)