欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java并发编程之创建线程

程序员文章站 2024-03-08 18:52:47
先讲述一下java中的应用程序和进程相关的概念知识,然后再阐述如何创建线程以及如何创建进程。下面是本文的目录大纲: 一.java中关于应用程序和进程相关的概念 二.ja...

先讲述一下java中的应用程序和进程相关的概念知识,然后再阐述如何创建线程以及如何创建进程。下面是本文的目录大纲:

一.java中关于应用程序和进程相关的概念

二.java中如何创建线程

三.java中如何创建进程

一.java中关于应用程序和进程相关的概念

在java中,一个应用程序对应着一个jvm实例(也有地方称为jvm进程),一般来说名字默认为java.exe或者javaw.exe(windows下可以通过任务管理器查看)。java采用的是单线程编程模型,即在我们自己的程序中如果没有主动创建线程的话,只会创建一个线程,通常称为主线程。但是要注意,虽然只有一个线程来执行任务,不代表jvm中只有一个线程,jvm实例在创建的时候,同时会创建很多其他的线程(比如垃圾收集器线程)。

由于java采用的是单线程编程模型,因此在进行ui编程时要注意将耗时的操作放在子线程中进行,以避免阻塞主线程(在ui编程时,主线程即ui线程,用来处理用户的交互事件)。

二.java中如何创建线程

在java中如果要创建线程的话,一般有两种方式:1)继承thread类;2)实现runnable接口。

1.继承thread类

继承thread类的话,必须重写run方法,在run方法中定义需要执行的任务。

class mythread extends thread{
 private static int num = 0;
 
 public mythread(){
 num++;
 }
 
 @override
 public void run() {
 system.out.println("主动创建的第"+num+"个线程");
 }
}

创建好了自己的线程类之后,就可以创建线程对象了,然后通过start()方法去启动线程。注意,不是调用run()方法启动线程,run方法中只是定义需要执行的任务,如果调用run方法,即相当于在主线程中执行run方法,跟普通的方法调用没有任何区别,此时并不会创建一个新的线程来执行定义的任务。

public class test {
 public static void main(string[] args) {
 mythread thread = new mythread();
 thread.start();
 }
}
 
class mythread extends thread{
 private static int num = 0;
 
 public mythread(){
 num++;
 }
 
 @override
 public void run() {
 system.out.println("主动创建的第"+num+"个线程");
 }
}

在上面代码中,通过调用start()方法,就会创建一个新的线程了。为了分清start()方法调用和run()方法调用的区别,请看下面一个例子:

public class test {
 public static void main(string[] args) {
 system.out.println("主线程id:"+thread.currentthread().getid());
 mythread thread1 = new mythread("thread1");
 thread1.start();
 mythread thread2 = new mythread("thread2");
 thread2.run();
 }
}
 
class mythread extends thread{
 private string name;
 
 public mythread(string name){
 this.name = name;
 }
 
 @override
 public void run() {
 system.out.println("name:"+name+" 子线程id:"+thread.currentthread().getid());
 }
}

运行结果:

Java并发编程之创建线程

从输出结果可以得出以下结论:

1)thread1和thread2的线程id不同,thread2和主线程id相同,说明通过run方法调用并不会创建新的线程,而是在主线程中直接运行run方法,跟普通的方法调用没有任何区别;

2)虽然thread1的start方法调用在thread2的run方法前面调用,但是先输出的是thread2的run方法调用的相关信息,说明新线程创建的过程不会阻塞主线程的后续执行。

2.实现runnable接口

在java中创建线程除了继承thread类之外,还可以通过实现runnable接口来实现类似的功能。实现runnable接口必须重写其run方法。

下面是一个例子:

public class test {
 public static void main(string[] args) {
 system.out.println("主线程id:"+thread.currentthread().getid());
 myrunnable runnable = new myrunnable();
 thread thread = new thread(runnable);
 thread.start();
 }
}
 
class myrunnable implements runnable{
 
 public myrunnable() {
 
 }
 
 @override
 public void run() {
 system.out.println("子线程id:"+thread.currentthread().getid());
 }
}

runnable的中文意思是“任务”,顾名思义,通过实现runnable接口,我们定义了一个子任务,然后将子任务交由thread去执行。注意,这种方式必须将runnable作为thread类的参数,然后通过thread的start方法来创建一个新线程来执行该子任务。如果调用runnable的run方法的话,是不会创建新线程的,这根普通的方法调用没有任何区别。

事实上,查看thread类的实现源代码会发现thread类是实现了runnable接口的。

在java中,这2种方式都可以用来创建线程去执行子任务,具体选择哪一种方式要看自己的需求。直接继承thread类的话,可能比实现runnable接口看起来更加简洁,但是由于java只允许单继承,所以如果自定义类需要继承其他类,则只能选择实现runnable接口。

三.java中如何创建进程

在java中,可以通过两种方式来创建进程,总共涉及到5个主要的类。

第一种方式是通过runtime.exec()方法来创建一个进程,第二种方法是通过processbuilder的start方法来创建进程。下面就来讲一讲这2种方式的区别和联系。

首先要讲的是process类,process类是一个抽象类,在它里面主要有几个抽象的方法,这个可以通过查看process类的源代码得知:

位于java.lang.process路径下:

public class test {
 public static void main(string[] args) {
 system.out.println("主线程id:"+thread.currentthread().getid());
 myrunnable runnable = new myrunnable();
 thread thread = new thread(runnable);
 thread.start();
 }
}
 
class myrunnable implements runnable{
 
 public myrunnable() {
 
 }
 
 @override
 public void run() {
 system.out.println("子线程id:"+thread.currentthread().getid());
 }
}

1)通过processbuilder创建进程

processbuilder是一个final类,它有两个构造器:

public final class processbuilder
{
 private list<string> command;
 private file directory;
 private map<string,string> environment;
 private boolean redirecterrorstream;
 
 public processbuilder(list<string> command) {
 if (command == null)
 throw new nullpointerexception();
 this.command = command;
 }
 
 public processbuilder(string... command) {
 this.command = new arraylist<string>(command.length);
 for (string arg : command)
 this.command.add(arg);
 }
....
}

构造器中传递的是需要创建的进程的命令参数,第一个构造器是将命令参数放进list当中传进去,第二构造器是以不定长字符串的形式传进去。

那么我们接着往下看,前面提到是通过processbuilder的start方法来创建一个新进程的,我们看一下start方法中具体做了哪些事情。下面是start方法的具体实现源代码:

public process start() throws ioexception {
// must convert to array first -- a malicious user-supplied
// list might try to circumvent the security check.
string[] cmdarray = command.toarray(new string[command.size()]);
for (string arg : cmdarray)
 if (arg == null)
 throw new nullpointerexception();
// throws indexoutofboundsexception if command is empty
string prog = cmdarray[0];
 
securitymanager security = system.getsecuritymanager();
if (security != null)
 security.checkexec(prog);
 
string dir = directory == null ? null : directory.tostring();
 
try {
 return processimpl.start(cmdarray,
 environment,
 dir,
 redirecterrorstream);
} catch (ioexception e) {
 // it's much easier for us to create a high-quality error
 // message than the low-level c code which found the problem.
 throw new ioexception(
 "cannot run program \"" + prog + "\""
 + (dir == null ? "" : " (in directory \"" + dir + "\")")
 + ": " + e.getmessage(),
 e);
}
}

该方法返回一个process对象,该方法的前面部分相当于是根据命令参数以及设置的工作目录进行一些参数设定,最重要的是try语句块里面的一句:

return processimpl.start(cmdarray,
 environment,
 dir,
 redirecterrorstream);

说明真正创建进程的是这一句,注意调用的是processimpl类的start方法,此处可以知道start必然是一个静态方法。那么processimpl又是什么类呢?该类同样位于java.lang.processimpl路径下,看一下该类的具体实现:

processimpl也是一个final类,它继承了process类:

final class processimpl extends process {
 
 // system-dependent portion of processbuilder.start()
 static process start(string cmdarray[],
 java.util.map<string,string> environment,
 string dir,
 boolean redirecterrorstream)
 throws ioexception
 {
 string envblock = processenvironment.toenvironmentblock(environment);
 return new processimpl(cmdarray, envblock, dir, redirecterrorstream);
 }
 ....
}

这是processimpl类的start方法的具体实现,而事实上start方法中是通过这句来创建一个processimpl对象的:

return new processimpl(cmdarray, envblock, dir, redirecterrorstream);
而在processimpl中对process类中的几个抽象方法进行了具体实现。

说明事实上通过processbuilder的start方法创建的是一个processimpl对象。

下面看一下具体使用processbuilder创建进程的例子,比如我要通过processbuilder来启动一个进程打开cmd,并获取ip地址信息,那么可以这么写:

public class test {
 public static void main(string[] args) throws ioexception {
 processbuilder pb = new processbuilder("cmd","/c","ipconfig/all");
 process process = pb.start();
 scanner scanner = new scanner(process.getinputstream());
 
 while(scanner.hasnextline()){
 system.out.println(scanner.nextline());
 }
 scanner.close();
 }
}

第一步是最关键的,就是将命令字符串传给processbuilder的构造器,一般来说,是把字符串中的每个独立的命令作为一个单独的参数,不过也可以按照顺序放入list中传进去。

至于其他很多具体的用法不在此进行赘述,比如通过processbuilder的environment方法和directory(file directory)设置进程的环境变量以及工作目录等,感兴趣的朋友可以查看相关api文档。

2)通过runtime的exec方法来创建进程

首先还是来看一下runtime类和exec方法的具体实现,runtime,顾名思义,即运行时,表示当前进程所在的虚拟机实例。

由于任何进程只会运行于一个虚拟机实例当中,所以在runtime中采用了单例模式,即只会产生一个虚拟机实例:

public class runtime {
 private static runtime currentruntime = new runtime();
 
 /**
 * returns the runtime object associated with the current java application.
 * most of the methods of class <code>runtime</code> are instance
 * methods and must be invoked with respect to the current runtime object.
 *
 * @return the <code>runtime</code> object associated with the current
 * java application.
 */
 public static runtime getruntime() {
 return currentruntime;
 }
 
 /** don't let anyone else instantiate this class */
 private runtime() {}
 ...
 }

从这里可以看出,由于runtime类的构造器是private的,所以只有通过getruntime去获取runtime的实例。接下来着重看一下exec方法 实现,在runtime中有多个exec的不同重载实现,但真正最后执行的是这个版本的exec方法:

public process exec(string[] cmdarray, string[] envp, file dir)
 throws ioexception {
 return new processbuilder(cmdarray)
 .environment(envp)
 .directory(dir)
 .start();
 }

可以发现,事实上通过runtime类的exec创建进程的话,最终还是通过processbuilder类的start方法来创建的。

下面看一个例子,看一下通过runtime的exec如何创建进程,还是前面的例子,调用cmd,获取ip地址信息:

public class test {
 public static void main(string[] args) throws ioexception {
 string cmd = "cmd "+"/c "+"ipconfig/all";
 process process = runtime.getruntime().exec(cmd);
 scanner scanner = new scanner(process.getinputstream());
 
 while(scanner.hasnextline()){
 system.out.println(scanner.nextline());
 }
 scanner.close();
 }
}

要注意的是,exec方法不支持不定长参数(processbuilder是支持不定长参数的),所以必须先把命令参数拼接好再传进去。

关于在java中如何创建线程和进程的话,暂时就讲这么多了,感兴趣的朋友可以参考相关资料。