本文主要是介绍java7-多线程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1,创建线程
- 在java中,线程也是一个对象,执行完毕Runnable接口里的run方法,线程就结束了。
- 当一个进程里所有的线程都执行结束了,一个进程也就执行结束了。
- 线程相当于是cpu,会从入口开始执行代码。一段代码可以被多个线程同时执行,可以通过
Thread.currentThread()
获取执行当前代码的线程。
- 例子
public class test {
public static void main(String[] args) throws InterruptedException {
System.out.println("当前线程为:"+Thread.currentThread().getName());
//非多线程执行
long start = System.currentTimeMillis();
for(int i=0; i<10; i++){
//System.out.println(""+i+" "+getSum(1, 1));
getSum(1, 1);
}
System.out.println("总耗时" + (System.currentTimeMillis()-start));
//多线程执行
start = System.currentTimeMillis();
for(int i=0; i<10; i++){
Thread thread = new Thread(()->{
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
});
thread.start();
}
System.out.println("总耗时" + (System.currentTimeMillis()-start));
}
static int getSum(int a, int b) throws InterruptedException {
Thread.sleep(100);
return a+b;
}
}
这篇关于java7-多线程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!