日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

1114. 按序打印

發布時間:2023/11/29 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 1114. 按序打印 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1114. 按序打印

我們提供了一個類:

public class Foo {
public void first() { print(“first”); }
public void second() { print(“second”); }
public void third() { print(“third”); }
}
三個不同的線程 A、B、C 將會共用一個 Foo 實例。

一個將會調用 first() 方法
一個將會調用 second() 方法
還有一個將會調用 third() 方法
請設計修改程序,以確保 second() 方法在 first() 方法之后被執行,third() 方法在 second() 方法之后被執行。

  • 示例 1:

輸入: [1,2,3]
輸出: “firstsecondthird”
解釋:
有三個線程會被異步啟動。
輸入 [1,2,3] 表示線程 A 將會調用 first() 方法,線程 B 將會調用 second() 方法,線程 C 將會調用 third() 方法。
正確的輸出是 “firstsecondthird”。

  • 示例 2:

輸入: [1,3,2]
輸出: “firstsecondthird”
解釋:
輸入 [1,3,2] 表示線程 A 將會調用 first() 方法,線程 B 將會調用 third() 方法,線程 C 將會調用 second() 方法。
正確的輸出是 “firstsecondthird”。

解題思路

簡單使用信號量,完成有序運行

代碼

class Foo {Semaphore f=new Semaphore(1);Semaphore s=new Semaphore(0);Semaphore t=new Semaphore(0);public Foo() {}public void first(Runnable printFirst) throws InterruptedException {f.acquire();// printFirst.run() outputs "first". Do not change or remove this line.printFirst.run();s.release();}public void second(Runnable printSecond) throws InterruptedException {s.acquire();// printSecond.run() outputs "second". Do not change or remove this line.printSecond.run();t.release();}public void third(Runnable printThird) throws InterruptedException {t.acquire();// printThird.run() outputs "third". Do not change or remove this line.printThird.run();f.release();} }

總結

以上是生活随笔為你收集整理的1114. 按序打印的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。