- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章实例总结Java多线程编程的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
1.什么时候使用多线程编程 。
一个任务在正常情况下是按顺序执行的,但是如果当前任务里有多个相似进程块(例如for,while语句),我们就可以考虑把这些代码块抽出来并行运行,无需阻塞 。
2.实现多线程的几种方式 。
一种是继承thread类重写run方法,另一种是实现runnable接口重写run方法 。
启动多线程很多情况下是为了处理并发进程,此时对于部分实时性要求不是那么高的业务需求,我们还可以通过实现队列的方式,异步实现.
3.举例 。
继承thread 。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
*
* @classname: threadbyex
* @description: todo
* @author mr.jqcheng
* @date 2018年9月26日
* */
public
class
threadbyex
extends
thread{
@override
public
void
run() {
// todo auto-generated method stub
system.out.println(
"我是继承线程"
);
}
}
|
实现runnable 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
*
* @classname: threadbyrunnable
* @description: todo
* @author mr.jqcheng
* @date 2018年9月26日
* */
public
class
threadbyrunnable
implements
runnable{
/*public threadbyrunnable() {
this.run();
// todo auto-generated constructor stub
}*/
public
void
run() {
// todo auto-generated method stub
system.out.println(
"我是实现进程"
);
}
}
|
测试:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
*
* @classname: test
* @description: todo
* @author mr.jqcheng
* @date 2018年9月26日
* */
public
class
test {
public
static
void
main(string[] args) {
// 继承thread启动的方法
threadbyex t1 =
new
threadbyex();
t1.start();
// 启动线程 // 实现runnable启动线程的方法
threadbyrunnable r =
new
threadbyrunnable();
thread t2 =
new
thread(r);
t2.start();
// 启动线程 //new threadbyrunnable(); }
}
|
运行结果:
我是继承线程 。
我是实现进程 。
ok,简单的多线程实现方式完成了,在调用start()的时候,该进程已经进入可执行状态,等待系统执行.
线程处理的几个常用方法:
void interrupt():向线程发送中断请求,线程的中断状态将会被设置为true,如果当前线程被一个sleep调用阻塞,那么将会抛出interrupedexception异常.
static boolean interrupted():测试当前线程(当前正在执行命令的这个线程)是否被中断。注意这是个静态方法,调用这个方法会产生一个副作用那就是它会将当前线程的中断状态重置为false.
boolean isinterrupted():判断线程是否被中断,这个方法的调用不会产生副作用即不改变线程的当前中断状态.
static thread currentthread() : 返回代表当前执行线程的thread对象.
守护进程 。
用来服务于不是服务进程的其他所有当前进程下的所有线程 。
实现deamon.setdaemon(true)就行,要在线程开启之前启用 。
举例 。
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
|
package
com.orange.util;
/**
*
* @classname: test
* @description: todo
* @author mr.jqcheng
* @date 2018年9月26日
*
*/
public
class
test {
public
static
void
main(string[] args) {
thread deamon2 =
new
thread(
new
daemonrunner2(),
"otherrunner"
);
deamon2.start();
// 启动线程
try
{
thread.sleep(
1000
);
}
catch
(interruptedexception e) {
// todo auto-generated catch block
e.printstacktrace();
}
thread deamon =
new
thread(
new
daemonrunner(),
"daemonrunner"
);
// 设置为守护线程
deamon.setdaemon(
true
);
deamon.start();
// 启动线程
}
static
class
daemonrunner
implements
runnable {
public
void
run() {
// todo auto-generated method stub
try
{
thread.sleep(
300
);
thread t = thread.currentthread();
system.out.println(t);
}
catch
(exception e) {
e.printstacktrace();
}
finally
{
system.out.println(
"进入守护线程,说明现在还有其他线程在执行"
);
}
}
}
static
class
daemonrunner2
implements
runnable {
public
void
run() {
// todo auto-generated method stub
try
{
thread.sleep(
1500
);
system.out.println(
"我是其他线程"
);
}
catch
(exception e) {
e.printstacktrace();
}
}
}
}
|
执行结果:
thread[daemonrunner,5,main] 。
进入守护线程,说明现在还有其他线程在执行 。
我是其他线程 。
首先,先启动其他线程,需要耗时1500ms,同时,主线程耗时1000ms后,开始进入守护线程,此时其它线程还在运行,到了守护线程,耗时300ms,其他线程仍在执行,继续往下,守护线程执行完毕 。
但是如果我把守护线程的300ms改成500ms,会发生什么事呢?
出现过两种情况,毕竟在临界值 。
1.我是其他线程 。
2.thread[daemonrunner,5,main] 。
进入守护线程,说明现在还有其他线程在执行 。
我是其他线程 。
最后此篇关于实例总结Java多线程编程的方法的文章就讲到这里了,如果你想了解更多关于实例总结Java多线程编程的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!