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; } }