- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章带你快速搞定java并发库由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
计算机程序 = 数据 + 算法.
并发编程的一切根本原因是为了保证数据的正确性,线程的效率性.
Java并发库共分为四个大的部分,如下图 。
Executor 和 future 是为了保证线程的效率性 。
Lock 和数据结构 是为了维持数据的一致性.
Java并发编程的时候,思考顺序为, 。
对自己的数据要么加锁。要么使用提供的数据结构,保证数据的安全性 。
调度线程的时候使用Executor更好的调度.
Executor 提供一种将任务提交与每个任务将如何运行的机制(包括线程使用的细节、调度等)分离开来的方法.
相当于manager,老板让manager去执行一件任务,具体的是谁执行,什么时候执行,就不管了.
看上图的继承关系,介绍几个 。
内置的线程池基本上都在这里 。
newScheduledThreadPool 定时执行的线程池 。
newCachedThreadPool 缓存使用过的线程 。
newFixedThreadPool 固定数量的线程池 。
newWorkStealingPool 将大任务分解为小任务的线程池 。
构造函数 。
包含一个定时的service 。
1
2
3
4
5
6
7
8
9
10
11
12
|
public
static
ScheduledExecutorService newSingleThreadScheduledExecutor() {
return
new
DelegatedScheduledExecutorService
(
new
ScheduledThreadPoolExecutor(
1
));
}
static
class
DelegatedScheduledExecutorService
extends
DelegatedExecutorService
implements
ScheduledExecutorService {
private
final
ScheduledExecutorService e;
DelegatedScheduledExecutorService(ScheduledExecutorService executor) {
super
(executor);
e = executor;
}
|
定时执行的时候调用这个方法,调用过程如下,注意看其中的注释,由上往下的调用顺序 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
public
ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
long
initialDelay,
long
delay,
TimeUnit unit) {
if
(command ==
null
|| unit ==
null
)
throw
new
NullPointerException();
if
(delay <=
0
)
throw
new
IllegalArgumentException();
ScheduledFutureTask<Void> sft =
new
ScheduledFutureTask<Void>(command,
null
,
triggerTime(initialDelay, unit),
unit.toNanos(-delay));
RunnableScheduledFuture<Void> t = decorateTask(command, sft);
sft.outerTask = t;
// 延迟执行
delayedExecute(t);
return
t;
}
private
void
delayedExecute(RunnableScheduledFuture<?> task) {
if
(isShutdown())
reject(task);
else
{
// 加入任务队列
super
.getQueue().add(task);
if
(isShutdown() &&
!canRunInCurrentRunState(task.isPeriodic()) &&
remove(task))
task.cancel(
false
);
else
// 确保执行
ensurePrestart();
}
}
// 如果worker数量小于corePoolSize,创建新的线程,其他情况不处理
void
ensurePrestart() {
int
wc = workerCountOf(ctl.get());
if
(wc < corePoolSize)
addWorker(
null
,
true
);
else
if
(wc ==
0
)
addWorker(
null
,
false
);
}
|
1
2
3
4
5
6
7
8
9
10
11
|
public
ScheduledFuture<?> schedule(Runnable command,
long
delay,
TimeUnit unit) {
if
(command ==
null
|| unit ==
null
)
throw
new
NullPointerException();
RunnableScheduledFuture<?> t = decorateTask(command,
new
ScheduledFutureTask<Void>(command,
null
,
triggerTime(delay, unit)));
delayedExecute(t);
return
t;
}
|
在每次执行的时候会把下一次执行的时间放进任务中 。
1
2
3
4
5
6
7
8
9
10
|
private
long
triggerTime(
long
delay, TimeUnit unit) {
return
triggerTime(unit.toNanos((delay <
0
) ?
0
: delay));
}
/**
* Returns the trigger time of a delayed action.
*/
long
triggerTime(
long
delay) {
return
now() +
((delay < (Long.MAX_VALUE >>
1
)) ? delay : overflowFree(delay));
}
|
FutureTask 定时是通过LockSupport.parkNanos(this, nanos);LockSupport.park(this),
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
private
int
awaitDone(
boolean
timed,
long
nanos)
throws
InterruptedException {
final
long
deadline = timed ? System.nanoTime() + nanos : 0L;
WaitNode q =
null
;
boolean
queued =
false
;
for
(;;) {
if
(Thread.interrupted()) {
removeWaiter(q);
throw
new
InterruptedException();
}
int
s = state;
if
(s > COMPLETING) {
if
(q !=
null
)
q.thread =
null
;
return
s;
}
else
if
(s == COMPLETING)
// cannot time out yet
Thread.yield();
else
if
(q ==
null
)
q =
new
WaitNode();
else
if
(!queued)
queued = UNSAFE.compareAndSwapObject(
this
, waitersOffset,
q.next = waiters, q);
else
if
(timed) {
nanos = deadline - System.nanoTime();
if
(nanos <= 0L) {
removeWaiter(q);
return
state;
}
//注意这里
LockSupport.parkNanos(
this
, nanos);
}
else
//注意这里
LockSupport.park(
this
);
}
}
|
总结:Executor是通过将任务放在队列中,生成的futureTask。然后将生成的任务在队列中排序,将时间最近的需要出发的任务做检查。如果时间不到,就阻塞线程到下次出发时间.
注意:newSingleThreadScheduledExecutor只会有一个线程,不管你提交多少任务,这些任务会顺序执行,如果发生异常会取消下面的任务,线程池也不会关闭,注意捕捉异常 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
ScheduledExecutorService single = Executors.newSingleThreadScheduledExecutor();
Runnable runnable1 = () -> {
try
{
Thread.sleep(
4000
);
System.out.println(
"11111111111111"
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
};
Runnable runnable2 = () -> {
try
{
Thread.sleep(
4000
);
System.out.println(
"222"
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
};
single.scheduleWithFixedDelay(runnable1,
0
,
1
, TimeUnit.SECONDS);
single.scheduleWithFixedDelay(runnable2,
0
,
2
, TimeUnit.SECONDS);
|
11111111111111 222 11111111111111 222 11111111111111 。
在项目中要注意关闭线程池 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
actionService = Executors.newSingleThreadScheduledExecutor();
actionService.scheduleWithFixedDelay(() -> {
try
{
Thread.currentThread().setName(
"robotActionService"
);
Integer robotId = robotQueue.poll();
if
(robotId ==
null
) {
// 关闭线程池
actionService.shutdown();
}
else
{
int
aiLv = robots.get(robotId);
if
(actionQueueMap.containsKey(aiLv)) {
ActionQueue actionQueue = actionQueueMap.get(aiLv);
actionQueue.doAction(robotId);
}
}
}
catch
(Exception e) {
// 捕捉异常
LOG.error(
""
,e);
}
},
1
,
1
, TimeUnit.SECONDS);
|
本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注我的更多内容! 。
原文链接:https://gamwatcher.blog.csdn.net/article/details/88406100 。
最后此篇关于带你快速搞定java并发库的文章就讲到这里了,如果你想了解更多关于带你快速搞定java并发库的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
如何更改循环中变量的名称?比如 number1 、 number2 、 number3 、 number4 ? var array = [2,4,6,8] func ap ( number1: Int
我想设置 View 的背景颜色并在一定延迟后将其更改为另一种颜色。这是我的尝试方式: print("setting color 1") self.view.backgroundColor = UICo
我在使用 express-session 时遇到问题。 session 数据不会在请求之间持续存在。 正如您在下面的代码中看到的那样,/join 路由设置了一些 session 属性,但是当 /sur
我试图从叶渲染器获得一个非常简单的结果,用于快速 Steam 的 for 循环。 我正在上传叶文件 HTML,因为它不接受此处格式正确的代码 - 下面的pizza.swift代码- import
你们中有人有什么好的链接可以与我分享吗?我正在寻找一个 FAST 程序员编辑器,它可以非常快速地打开包含超过 100, 000 行代码的文件?我目前正在使用记事本自动取款机,打开一个 29000 行长
我现在正在处理眼动追踪数据,因此拥有一个巨大的数据集(想想数百万行),因此希望有一种快速的方法来完成此任务。这是它的简化版本。 数据告诉您眼睛在每个时间点正在查看的位置以及我们正在查看的每个文件。 X
我是新手,想为计时器或其他设备选择提示音。 如何打开此列表,以选择其中一种声音? Alert sound list 最佳答案 您将无法在应用中使用系统声音。 但是,您可以包括自己的声音文件,并将其显示
我编写了以下代码来构建具有顺序字符串的数组。 它的工作方式与我预期的一样,但我希望它能更快地运行。有没有更有效的方法在PowerShell中产生我想要的结果? 我是PowerShell的新手,非常感谢
我有一个包含一些非唯一行的矩阵,例如: x 尝试 y <- rle(apply(x, 1, paste, collapse = " ")) # y$lengths is the vector con
我的函数“keyboardWillShown”有问题。所以我想要的是菜单打开时,菜单正好出现在键盘上方。它可以在Iphone 8 plus,8、7、6上完美运行。但是,当我在模拟器上运行Iphone
我正在尝试通过Swift 5中的HTTP get方法从API提取数据。它在启动时成功加载了数据,但是当我刷新页面时,它说“索引超出范围”,这是因为数据是不再会在我的日志中读取,因此索引中没有任何内容。
我想做什么: 从我的数据库中获取时间戳并将其转换为用户的时区。 我的代码: let tryItNow = "\(model.timestampName)" let format = D
给定字体名称和字体大小,如何查找字符串的宽度(CGFloat)? (目标是将UIView的宽度设置为足以容纳字符串的宽度。) 我有两个字符串:一个重复“1”,重复36次,另一个重复“M”,重复36次。
我正在尝试解析此JSON ["Items": ( { AccountBalance = 0; AlphabetType = 3; Description = "\U0631\U
我在UINavigationBar内放置了一个UILabel。 我想根据navigationBar的高度增加该标签的字体大小。当navigationBar很大时,我希望字体大小更大;当滚动并缩小nav
我想将用户输入限制为仅有效数字并使用以下内容: func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, rep
目前我有一个包含超过 100.000 张图像的数据库,它们大小不一或类似,但我想为我的公司制作以下内容: 我插入/上传一张图片,系统返回最有可能相同的图片。我不知道使用什么算法,但它需要快速。我可以预
在我的 swift 项目中,我有一个按钮,我想在标签上打印按下该按钮的时间。 如何解决这个问题? 最佳答案 添加到DHEERAJ的答案中,您只需在func press(sender: UIButton
我必须发表评论,尝试在解析中导入数组。然而,有一个问题。 当我尝试从 Parse 加载数组时,我的输出是 ("Blah","Blah","Blah")这是一个元组...而不是一个数组 TT... 如何
我的应用程序有一个名为 MyDevice 的类,我用它来与硬件通信。该硬件是可选的,实例变量也是可选的: var theDevice:MyDevice = nil 然后,在应用程序中,我必须初始化设备
我是一名优秀的程序员,十分优秀!