亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

java語言

Java多線程常用的幾個關(guān)鍵字

時間:2024-09-30 07:04:31 java語言 我要投稿
  • 相關(guān)推薦

Java多線程常用的幾個關(guān)鍵字

  本文是百分網(wǎng)小編搜索整理的關(guān)于Java多線程常用的幾個關(guān)鍵字,供參考借鑒,希望對大家有所幫助!想了解更多相關(guān)信息請持續(xù)關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!

  一、同步(synchronized)和異步(asynchronized)

  1、同步(synchronized)簡單說可以理解為共享的意思,如果資源不是共享的,就沒必要進(jìn)行同步。設(shè)置共享資源為同步的話,可以避免一些臟讀情況。

  2、異步(asynchronized)簡單說可以理解為獨(dú)立不受到其他任何制約。

  舉個例子:

  線程1調(diào)用了帶有synchronized關(guān)鍵字的方法methodA,線程2調(diào)用了異步方法methodB,出現(xiàn)的現(xiàn)象是同時控制臺輸出 t1,t2。

  package com.ietree.multithread.sync;

  /**

  * 多線程之對象同步鎖和異步鎖Demo

  *

  * @author ietree

  */

  public class SynAndAsynDemo {

  public static void main(String[] args) {

  final SynAndAsynDemo mo = new SynAndAsynDemo();

  Thread t1 = new Thread(new Runnable() {

  @Override

  public void run() {

  mo.methodA();

  }

  },"t1");

  Thread t2 = new Thread(new Runnable() {

  @Override

  public void run() {

  mo.methodB();

  }

  },"t2");

  t1.start();

  t2.start();

  }

  // 方法A

  public synchronized void methodA(){

  try {

  System.out.println(Thread.currentThread().getName());

  // 休眠4秒

  Thread.sleep(4000);

  } catch (InterruptedException e) {

  e.printStackTrace();

  }

  }

  // 方法B

  public void methodB(){

  System.out.println(Thread.currentThread().getName());

  }

  }

  線程1調(diào)用了帶有synchronized關(guān)鍵字的方法methodA,線程2調(diào)用了帶有synchronized關(guān)鍵字的方法methodB,出現(xiàn)的現(xiàn)象是首先輸出t1,等待4秒之后再輸出t2。

  package com.ietree.multithread.sync;

  /**

  * 多線程之對象同步鎖和異步鎖Demo

  *

  * @author ietree

  */

  public class SynAndAsynDemo {

  public static void main(String[] args) {

  final SynAndAsynDemo mo = new SynAndAsynDemo();

  Thread t1 = new Thread(new Runnable() {

  @Override

  public void run() {

  mo.methodA();

  }

  },"t1");

  Thread t2 = new Thread(new Runnable() {

  @Override

  public void run() {

  mo.methodB();

  }

  },"t2");

  t1.start();

  t2.start();

  }

  // 方法A

  public synchronized void methodA(){

  try {

  System.out.println(Thread.currentThread().getName());

  // 休眠4秒

  Thread.sleep(4000);

  } catch (InterruptedException e) {

  e.printStackTrace();

  }

  }

  // 方法B

  public synchronized void methodB(){

  System.out.println(Thread.currentThread().getName());

  }

  }

  結(jié)論:

  在第一段代碼中t1線程先持有object對象的Lock鎖,t2線程可以以異步的方式調(diào)用對象中的非synchronized修飾的方法,所以同時輸出;

  在第二段代碼中t1線程先持有object對象的Lock鎖,t2線程如果在這個時候調(diào)用對象中的同步(synchronized)方法則需等待,也就是同步。

  二、volatile

  作用:volatile關(guān)鍵字的作用是:使變量在多個線程間可見(具有可見性),但是僅靠volatile是不能保證線程的安全性,volatile關(guān)鍵字不具備synchronized關(guān)鍵字的原子性。

  Demo1:

  package com.ietree.multithread.sync;

  public class RunThread extends Thread {

  // volatile

  private boolean isRunning = true;

  private void setRunning(boolean isRunning) {

  this.isRunning = isRunning;

  }

  public void run() {

  System.out.println("進(jìn)入run方法..");

  int i = 0;

  while (isRunning == true) {

  // ..

  }

  System.out.println("線程停止");

  }

  public static void main(String[] args) throws InterruptedException {

  RunThread rt = new RunThread();

  rt.start();

  Thread.sleep(1000);

  rt.setRunning(false);

  System.out.println("isRunning的值已經(jīng)被設(shè)置了false");

  }

  }

  程序輸出:

  進(jìn)入run方法..

  isRunning的值已經(jīng)被設(shè)置了false

  之后進(jìn)入死循環(huán)

  Demo2:

  package com.ietree.multithread.sync;

  public class RunThread extends Thread {

  // volatile

  private volatile boolean isRunning = true;

  private void setRunning(boolean isRunning) {

  this.isRunning = isRunning;

  }

  public void run() {

  System.out.println("進(jìn)入run方法..");

  int i = 0;

  while (isRunning == true) {

  // ..

  }

  System.out.println("線程停止");

  }

  public static void main(String[] args) throws InterruptedException {

  RunThread rt = new RunThread();

  rt.start();

  Thread.sleep(1000);

  rt.setRunning(false);

  System.out.println("isRunning的值已經(jīng)被設(shè)置了false");

  }

  }

  程序輸出:

  isRunning的值已經(jīng)被設(shè)置了false

  線程停止

  總結(jié):當(dāng)多個線程之間需要根據(jù)某個條件確定 哪個線程可以執(zhí)行時,要確保這個條件在 線程之間是可見的。因此,可以用volatile修飾。

  volatile 與 synchronized 的比較:

 、賤olatile輕量級,只能修飾變量。synchronized重量級,還可修飾方法

 、趘olatile只能保證數(shù)據(jù)的可見性,不能用來同步,因?yàn)槎鄠線程并發(fā)訪問volatile修飾的變量不會阻塞。

  synchronized不僅保證可見性,而且還保證原子性,因?yàn)椋挥蝎@得了鎖的線程才能進(jìn)入臨界區(qū),從而保證臨界區(qū)中的所有語句都全部執(zhí)行。多個線程爭搶synchronized鎖對象時,會出現(xiàn)阻塞。

  線程安全性包括兩個方面,①可見性。②原子性。

  從上面自增的例子中可以看出:僅僅使用volatile并不能保證線程安全性。而synchronized則可實(shí)現(xiàn)線程的安全性。

【Java多線程常用的幾個關(guān)鍵字】相關(guān)文章:

java多線程08-31

java的多線程09-09

java語言的多線程08-29

關(guān)于Java多線程介紹09-09

Java多線程的開發(fā)技巧10-16

Java多線程問題總結(jié)10-24

理解java中的關(guān)鍵字06-22

java的import關(guān)鍵字是什么09-03

解析Java中volatile關(guān)鍵字09-28

Java編程中this關(guān)鍵字與super關(guān)鍵字的使用方法08-23