- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Java多线程基础由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
什么是线程:
线程是进程的一个实体,是CPU调度和分派的基本单位,它是比进程更小的能独立运行的基本单位.
什么是多线程:
多线程指在单个程序中可以同时运行多个不同的线程执行不同的任务.
多线程的创建方式有三种:Thread、Runnable、Callable 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Thread thread =
new
Thread() {
@Override
public
void
run() {
super
.run();
while
(
true
) {
try
{
Thread.sleep(
500
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
System.out.println(
"1:"
+ Thread.currentThread().getName());
System.out.println(
"2:"
+
this
.getName());
}
}
};
thread.start();
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Thread thread1 =
new
Thread(
new
Runnable() {
@Override
public
void
run() {
while
(
true
) {
try
{
Thread.sleep(
500
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
System.out.println(
"3:"
+ Thread.currentThread().getName());
}
}
});
thread1.start();
|
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
|
public
class
CallableTest {
public
static
void
main(String[] args) {
System.out.println(
"当前线程是:"
+ Thread.currentThread());
Callable myCallable =
new
Callable() {
@Override
public
Integer call()
throws
Exception {
int
i =
0
;
for
(; i <
10
; i++) {
}
//当前线程
System.out.println(
"当前线程是:"
+ Thread.currentThread()
+
":"
+ i);
return
i;
}
};
FutureTask<Integer> fu =
new
FutureTask<Integer>(myCallable);
Thread th =
new
Thread(fu,
"callable thread"
);
th.start();
//得到返回值
try
{
System.out.println(
"返回值是:"
+ fu.get());
}
catch
(Exception e) {
e.printStackTrace();
}
}
}
|
当前线程是:Thread[main,5,main] 当前线程是:Thread[callable thread,5,main]:10 返回值是:10 。
总结:
实现Runnable接口相比继承Thread类有如下优势:
实现Runnable接口和实现Callable接口的区别
Runnable
是自从java1.1
就有了,而Callable
是1.5之后才加上去的Callable
规定的方法是call()
, Runnable
规定的方法是run()
Callable
的任务执行后可返回值,而Runnable
的任务是不能返回值是(void)Runnable
使用ExecutorService
的execute
方法,Callable
使用submit
方法。
Join线程的运行顺序 。
原理:
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
|
import
java.util.Timer;
import
java.util.TimerTask;
public
class
TraditionalTimerTest {
public
static
void
main(String[] args) {
// new Timer().schedule(new TimerTask() {
// @Override
// public void run() {
//
// System.out.println("bombing!");
// }
// },10000);
class
MyTimberTask
extends
TimerTask {
@Override
public
void
run() {
System.out.println(
"bombing!"
);
new
Timer().schedule(
new
MyTimberTask(),
2000
);
}
}
new
Timer().schedule(
new
MyTimberTask(),
2000
);
int
count =
0
;
while
(
true
) {
System.out.println(count++);
try
{
Thread.sleep(
1000
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
}
}
}
|
0 1 bombing! 2 3 bombing! 4 5 bombing! 6 省略... 。
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
public
class
TraditionalThreadSynchronized {
public
static
void
main(String[] args) {
new
TraditionalThreadSynchronized().init();
}
private
void
init() {
final
Outputer outputer =
new
Outputer();
new
Thread(
new
Runnable() {
@Override
public
void
run() {
while
(
true
) {
try
{
Thread.sleep(
10
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
outputer.output(
"kpioneer"
);
}
}
}).start();
// new Thread(new Runnable() {
// @Override
// public void run() {
//
// while (true) {
// try {
// Thread.sleep(10);
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
// outputer.output2("Tom");
//
// }
// }
// }).start();
new
Thread(
new
Runnable() {
@Override
public
void
run() {
while
(
true
) {
try
{
Thread.sleep(
10
);
}
catch
(InterruptedException e) {
e.printStackTrace();
}
outputer.output3(
"Jack"
);
}
}
}).start();
}
static
class
Outputer {
public
void
output(String name) {
int
len = name.length();
synchronized
(Outputer.
class
) {
for
(
int
i =
0
; i < len; i++) {
System.out.print(name.charAt(i));
}
System.out.println();
}
}
public
synchronized
void
output2(String name) {
int
len = name.length();
for
(
int
i =
0
; i < len; i++) {
System.out.print(name.charAt(i));
}
System.out.println();
}
public
static
synchronized
void
output3(String name) {
int
len = name.length();
for
(
int
i =
0
; i < len; i++) {
System.out.print(name.charAt(i));
}
System.out.println();
}
}
}
|
子线程循环10次,接着主线程循环100,接着又回到子线程循环10次,接着再回到主线程有循环100,如此循环50次,请写出程序.
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
public
class
TraditionalThreadCommunication {
public
static
void
main(String[] args) {
final
Business business =
new
Business();
new
Thread(
new
Runnable() {
@Override
public
void
run() {
for
(
int
i =
1
; i <=
50
; i++) {
business.sub(i);
}
}
}
).start();
for
(
int
i =
1
; i <=
50
; i++) {
business.main(i);
}
}
}
/**
*要用到共同数据(包括同步锁)的若干方法应该归在同一个类身上,
* 这种设计正好体现了高类聚和和程序的健壮性
*/
class
Business {
private
boolean
bShouldSub =
true
;
public
synchronized
void
sub(
int
i) {
if
(!bShouldSub) {
try
{
this
.wait();
}
catch
(InterruptedException e) {
e.printStackTrace();
}
}
for
(
int
j =
1
; j <=
10
; j++) {
System.out.println(
"sub thread sequece of "
+ j +
",loop of "
+ i);
}
bShouldSub =
false
;
this
.notify();
}
public
synchronized
void
main(
int
i) {
if
(bShouldSub) {
try
{
this
.wait();
}
catch
(InterruptedException e) {
e.printStackTrace();
}
}
for
(
int
j =
1
; j <=
100
; j++) {
System.out.println(
"main thread sequece of "
+ j +
",loop of "
+ i);
}
bShouldSub =
true
;
this
.notify();
}
}
|
sub thread sequece of 1,loop of 1 sub thread sequece of 2,loop of 1 sub thread sequece of 3,loop of 1 sub thread sequece of 4,loop of 1 sub thread sequece of 5,loop of 1 sub thread sequece of 6,loop of 1 sub thread sequece of 7,loop of 1 sub thread sequece of 8,loop of 1 sub thread sequece of 9,loop of 1 sub thread sequece of 10,loop of 1 main thread sequece of 1,loop of 1 main thread sequece of 2,loop of 1 main thread sequece of 3,loop of 1 main thread sequece of 4,loop of 1 main thread sequece of 5,loop of 1 main thread sequece of 6,loop of 1 main thread sequece of 7,loop of 1 main thread sequece of 8,loop of 1 main thread sequece of 9,loop of 1 main thread sequece of 10,loop of 1 main thread sequece of 11,loop of 1 省略中间... main thread sequece of 99,loop of 1 main thread sequece of 100,loop of 1 sub thread sequece of 1,loop of 2 sub thread sequece of 2,loop of 2 sub thread sequece of 3,loop of 2 sub thread sequece of 4,loop of 2 sub thread sequece of 5,loop of 2 sub thread sequece of 6,loop of 2 sub thread sequece of 7,loop of 2 sub thread sequece of 8,loop of 2 sub thread sequece of 9,loop of 2 sub thread sequece of 10,loop of 2 main thread sequece of 1,loop of 2 main thread sequece of 2,loop of 2 main thread sequece of 3,loop of 2 省略... 。
到此这篇关于Java多线程基础的文章就介绍到这了,更多相关Java多线程内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://juejin.cn/post/7016565183694766088 。
最后此篇关于Java多线程基础的文章就讲到这里了,如果你想了解更多关于Java多线程基础的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我将 Bootstrap 与 css 和 java 脚本结合使用。在不影响前端代码的情况下,我真的很难在css中绘制这个背景。在许多问题中,人们将宽度和高度设置为 0%。但是由于我的导航栏,我不能使用
我正在用 c 编写一个程序来读取文件的内容。代码如下: #include void main() { char line[90]; while(scanf("%79[^\
我想使用 javascript 获取矩阵数组的所有对 Angular 线。假设输入输出如下: input = [ [1,2,3], [4,5,6], [7,8,9], ] output =
可以用pdfmake绘制lines,circles和other shapes吗?如果是,是否有documentation或样本?我想用jsPDF替换pdfmake。 最佳答案 是的,有可能。 pdfm
我有一个小svg小部件,其目的是显示角度列表(参见图片)。 现在,角度是线元素,仅具有笔触,没有填充。但是现在我想使用一种“内部填充”颜色和一种“笔触/边框”颜色。我猜想line元素不能解决这个问题,
我正在为带有三角对象的 3D 场景编写一个非常基本的光线转换器,一切都工作正常,直到我决定尝试从场景原点 (0/0/0) 以外的点转换光线。 但是,当我将光线原点更改为 (0/1/0) 时,相交测试突
这个问题已经有答案了: Why do people write "#!/usr/bin/env python" on the first line of a Python script? (22 个回
如何使用大约 50 个星号 * 并使用 for 循环绘制一条水平线?当我尝试这样做时,结果是垂直(而不是水平)列出 50 个星号。 public void drawAstline() { f
这是一个让球以对角线方式下降的 UI,但球保持静止;线程似乎无法正常工作。你能告诉我如何让球移动吗? 请下载一个球并更改目录,以便程序可以找到您的球的分配位置。没有必要下载足球场,但如果您愿意,也可以
我在我的一个项目中使用 Jmeter 和 Ant,当我们生成报告时,它会在报告中显示 URL、#Samples、失败、成功率、平均时间、最短时间、最长时间。 我也想在报告中包含 90% 的时间线。 现
我有一个不寻常的问题,希望有人能帮助我。我想用 Canvas (android) 画一条 Swing 或波浪线,但我不知道该怎么做。它将成为蝌蚪的尾部,所以理想情况下我希望它的形状更像三角形,一端更大
这个问题已经有答案了: Checking Collision of Shapes with JavaFX (1 个回答) 已关闭 8 年前。 我正在使用 JavaFx 8 库。 我的任务很简单:我想检
如何按编号的百分比拆分文件。行数? 假设我想将我的文件分成 3 个部分(60%/20%/20% 部分),我可以手动执行此操作,-_-: $ wc -l brown.txt 57339 brown.tx
我正在努力实现这样的目标: 但这就是我设法做到的。 你能帮我实现预期的结果吗? 更新: 如果我删除 bootstrap.css 依赖项,问题就会消失。我怎样才能让它与 Bootstrap 一起工作?
我目前正在构建一个网站,但遇到了 transform: scale 的问题。我有一个按钮,当用户将鼠标悬停在它上面时,会发生两件事: 背景以对 Angular 线“扫过” 按钮标签颜色改变 按钮稍微变
我需要使用直线和仿射变换绘制大量数据点的图形(缩放图形以适合 View )。 目前,我正在使用 NSBezierPath,但我认为它效率很低(因为点在绘制之前被复制到贝塞尔路径)。通过将我的数据切割成
我正在使用基于 SVM 分类的 HOG 特征检测器。我可以成功提取车牌,但提取的车牌除了车牌号外还有一些不必要的像素/线。我的图像处理流程如下: 在灰度图像上应用 HOG 检测器 裁剪检测到的区域 调
我有以下图片: 我想填充它的轮廓(即我想在这张图片中填充线条)。 我尝试了形态学闭合,但使用大小为 3x3 的矩形内核和 10 迭代并没有填满整个边界。我还尝试了一个 21x21 内核和 1 迭代,但
我必须找到一种算法,可以找到两组数组之间的交集总数,而其中一个数组已排序。 举个例子,我们有这两个数组,我们向相应的数字画直线。 这两个数组为我们提供了总共 7 个交集。 有什么样的算法可以帮助我解决
简单地说 - 我想使用透视投影从近裁剪平面绘制一条射线/线到远裁剪平面。我有我认为是使用各种 OpenGL/图形编程指南中描述的方法通过单击鼠标生成的正确标准化的世界坐标。 我遇到的问题是我的光线似乎
我是一名优秀的程序员,十分优秀!