溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java 多線程 之 銀行ATM實例

發(fā)布時間:2020-08-09 23:12:25 來源:ITPUB博客 閱讀:179 作者:huyang_ya 欄目:編程語言

轉(zhuǎn)載于 :  http://www.verejava.com/?id=16992914422268  

package com.thread;import java.util.Scanner;public class TestBank {	
	public static void main(String[] args) {
		Bank bank = new Bank();
		Thread lingming = new Thread(bank, "李明");
		Thread wangtao = new Thread(bank, "王濤");
		lingming.start();		try {
			Thread.sleep(4000);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		wangtao.start();
	}
}class Bank implements Runnable {	
	public static int money = 1000;	@Override
	public synchronized void run() {
		System.out.println(Thread.currentThread().getName() + " 登陸 您銀行的存款為:" + money);		try {
			Thread.sleep(10000);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		Scanner in = new Scanner(System.in);
		System.out.println("請輸入您要取款金額:");		int num = in.nextInt();		if (money < num) {
			System.out.println(Thread.currentThread().getName() + "您的余額:" + money + " 不足 " + num);
		} else {
			money = money - num;
			System.out.println(Thread.currentThread().getName() + " 取了 " + num + "  您當(dāng)前余額為:" + money);
		}
	}
}

轉(zhuǎn)載于 :  http://www.verejava.com/?id=16992914422268  

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI