多线程

1多线程

  • 1.0 特性

    • ​ 原子性:是指一个操作是不可中断的。即使是多个线程一起执行的时候,一个操作一旦开始,就不会被其他线程干扰。比如,对于一个静态全局变量int i,两个线程同时对它赋值,线程A给他赋值为1,线程B给他赋值为-1。那么不管这两个线程以何种方式。何种步调工作,i的值要么是1,要么是-1.线程A和线程B之间是没有干扰的。这就是原子性的一个特点,不可被中断。

    • ​ 可见性:是指当一个线程修改了某一个共享变量的值,其他线程是否能够立即知道这个修改。显然,对于串行来说,可见性问题是不存在的。

    • ​ 有序性:在并发时,程序的执行可能会出现乱序。给人的直观感觉就是:写在前面的代码,会在后面执行。有序性问题的原因是因为程序在执行时,可能会进行指令重排,重排后的指令与原指令的顺序未必一致。
  • 1.1 线程的创建

    • 1 在线程start()后不是立即运行,需要等待CPU的调度

    • 2 线程的六个状态:Thread.State()从这个进入查看源码

      public enum State {
              /**
               * Thread state for a thread which has not yet started.
               */
              NEW,
      
              /**
               * Thread state for a runnable thread.  A thread in the runnable
               * state is executing in the Java virtual machine but it may
               * be waiting for other resources from the operating system
               * such as processor.
               */
              RUNNABLE,
      
              /**
               * Thread state for a thread blocked waiting for a monitor lock.
               * A thread in the blocked state is waiting for a monitor lock
               * to enter a synchronized block/method or
               * reenter a synchronized block/method after calling
               * {@link Object#wait() Object.wait}.
               */
              BLOCKED,
      
              /**
               * Thread state for a waiting thread.
               * A thread is in the waiting state due to calling one of the
               * following methods:
               * <ul>
               *   <li>{@link Object#wait() Object.wait} with no timeout</li>
               *   <li>{@link #join() Thread.join} with no timeout</li>
               *   <li>{@link LockSupport#park() LockSupport.park}</li>
               * </ul>
               *
               * <p>A thread in the waiting state is waiting for another thread to
               * perform a particular action.
               *
               * For example, a thread that has called <tt>Object.wait()</tt>
               * on an object is waiting for another thread to call
               * <tt>Object.notify()</tt> or <tt>Object.notifyAll()</tt> on
               * that object. A thread that has called <tt>Thread.join()</tt>
               * is waiting for a specified thread to terminate.
               */
              WAITING,
      
              /**
               * Thread state for a waiting thread with a specified waiting time.
               * A thread is in the timed waiting state due to calling one of
               * the following methods with a specified positive waiting time:
               * <ul>
               *   <li>{@link #sleep Thread.sleep}</li>
               *   <li>{@link Object#wait(long) Object.wait} with timeout</li>
               *   <li>{@link #join(long) Thread.join} with timeout</li>
               *   <li>{@link LockSupport#parkNanos LockSupport.parkNanos}</li>
               *   <li>{@link LockSupport#parkUntil LockSupport.parkUntil}</li>
               * </ul>
               */
              TIMED_WAITING,
      
              /**
               * Thread state for a terminated thread.
               * The thread has completed execution.
               */
              TERMINATED;
          }
      
    • 3 正常没有创建线程都会有俩个进程存在,一个main线程,一个垃圾回收的GC线程

    //使用匿名内部类的方法来创建线程,可以减少创建一个类
    new Thread(new Runnable() {
                @Override
                public void run() {
                }
            },"A").start();
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值