<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 9, comments - 4, trackbacks - 0, articles - 21

    JDK5中的一個亮點就是將Doug Lea的并發(fā)庫引入到Java標準庫中。Doug Lea確實是一個牛人,能教書,能出書,能編碼,不過這在國外還是比較普遍的,而國內(nèi)的教授們就相差太遠了。

    一般的服務(wù)器都需要線程池,比如Web、FTP等服務(wù)器,不過它們一般都自己實現(xiàn)了線程池,比如以前介紹過的Tomcat、Resin和Jetty等,現(xiàn)在有了JDK5,我們就沒有必要重復(fù)造車輪了,直接使用就可以,何況使用也很方便,性能也非常高。

    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2. import java.util.concurrent.ExecutorService;  
    3. import java.util.concurrent.Executors;  
    4. public class TestThreadPool {  
    5. public static void main(String args[]) throws InterruptedException {  
    6. // only two threads  
    7. ExecutorService exec = Executors.newFixedThreadPool(2);  
    8. for(int index = 0; index < 100; index++) {  
    9. Runnable run = new Runnable() {  
    10. public void run() {  
    11. long time = (long) (Math.random() * 1000);  
    12. System.out.println(“Sleeping ” + time + “ms”);  
    13. try {  
    14. Thread.sleep(time);  
    15. } catch (InterruptedException e) {  
    16. }  
    17. }  
    18. };  
    19. exec.execute(run);  
    20. }  
    21. // must shutdown  
    22. exec.shutdown();  
    23. }  
    24. }  

    上面是一個簡單的例子,使用了2個大小的線程池來處理100個線程。但有一個問題:在for循環(huán)的過程中,會等待線程池有空閑的線程,所以主線程 會阻塞的。為了解決這個問題,一般啟動一個線程來做for循環(huán),就是為了避免由于線程池滿了造成主線程阻塞。不過在這里我沒有這樣處理。[重要修正:經(jīng)過 測試,即使線程池大小小于實際線程數(shù)大小,線程池也不會阻塞的,這與Tomcat的線程池不同,它將Runnable實例放到一個“無限”的 BlockingQueue中,所以就不用一個線程啟動for循環(huán),Doug Lea果然厲害]

    另外它使用了Executors的靜態(tài)函數(shù)生成一個固定的線程池,顧名思義,線程池的線程是不會釋放的,即使它是Idle。這就會產(chǎn)生性能問題, 比如如果線程池的大小為200,當全部使用完畢后,所有的線程會繼續(xù)留在池中,相應(yīng)的內(nèi)存和線程切換(while(true)+sleep循環(huán))都會增 加。如果要避免這個問題,就必須直接使用ThreadPoolExecutor()來構(gòu)造。可以像Tomcat的線程池一樣設(shè)置“最大線程數(shù)”、“最小線 程數(shù)”和“空閑線程keepAlive的時間”。通過這些可以基本上替換Tomcat的線程池實現(xiàn)方案。

    需要注意的是線程池必須使用shutdown來顯式關(guān)閉,否則主線程就無法退出。shutdown也不會阻塞主線程。

    許多長時間運行的應(yīng)用有時候需要定時運行任務(wù)完成一些諸如統(tǒng)計、優(yōu)化等工作,比如在電信行業(yè)中處理用戶話單時,需要每隔1分鐘處理話單;網(wǎng)站每天 凌晨統(tǒng)計用戶訪問量、用戶數(shù);大型超時凌晨3點統(tǒng)計當天銷售額、以及最熱賣的商品;每周日進行數(shù)據(jù)庫備份;公司每個月的10號計算工資并進行轉(zhuǎn)帳等,這些 都是定時任務(wù)。通過 java的并發(fā)庫concurrent可以輕松的完成這些任務(wù),而且非常的簡單。

    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2. import static java.util.concurrent.TimeUnit.SECONDS;  
    3. import java.util.Date;  
    4. import java.util.concurrent.Executors;  
    5. import java.util.concurrent.ScheduledExecutorService;  
    6. import java.util.concurrent.ScheduledFuture;  
    7. public class TestScheduledThread {  
    8. public static void main(String[] args) {  
    9. final ScheduledExecutorService scheduler = Executors  
    10. .newScheduledThreadPool(2);  
    11. final Runnable beeper = new Runnable() {  
    12. int count = 0;  
    13. public void run() {  
    14. System.out.println(new Date() + ” beep ” + (++count));  
    15. }  
    16. };  
    17. // 1秒鐘后運行,并每隔2秒運行一次  
    18. final ScheduledFuture beeperHandle = scheduler.scheduleAtFixedRate(  
    19. beeper, 1, 2, SECONDS);  
    20. // 2秒鐘后運行,并每次在上次任務(wù)運行完后等待5秒后重新運行  
    21. final ScheduledFuture beeperHandle2 = scheduler  
    22. .scheduleWithFixedDelay(beeper, 2, 5, SECONDS);  
    23. // 30秒后結(jié)束關(guān)閉任務(wù),并且關(guān)閉Scheduler  
    24. scheduler.schedule(new Runnable() {  
    25. public void run() {  
    26. beeperHandle.cancel(true);  
    27. beeperHandle2.cancel(true);  
    28. scheduler.shutdown();  
    29. }  
    30. }, 30, SECONDS);  
    31. }  
    32. }  

    為了退出進程,上面的代碼中加入了關(guān)閉Scheduler的操作。而對于24小時運行的應(yīng)用而言,是沒有必要關(guān)閉Scheduler的。

    在實際應(yīng)用中,有時候需要多個線程同時工作以完成同一件事情,而且在完成過程中,往往會等待其他線程都完成某一階段后再執(zhí)行,等所有線程都到達某一個階段后再統(tǒng)一執(zhí)行。

    比如有幾個旅行團需要途經(jīng)深圳、廣州、韶關(guān)、長沙最后到達武漢。旅行團中有自駕游的,有徒步的,有乘坐旅游大巴的;這些旅行團同時出發(fā),并且每到一個目的地,都要等待其他旅行團到達此地后再同時出發(fā),直到都到達終點站武漢。

    這時候CyclicBarrier就可以派上用場。CyclicBarrier最重要的屬性就是參與者個數(shù),另外最要方法是await()。當所有線程都調(diào)用了await()后,就表示這些線程都可以繼續(xù)執(zhí)行,否則就會等待。
    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2. import java.text.SimpleDateFormat;  
    3. import java.util.Date;  
    4. import java.util.concurrent.BrokenBarrierException;  
    5. import java.util.concurrent.CyclicBarrier;  
    6. import java.util.concurrent.ExecutorService;  
    7. import java.util.concurrent.Executors;  
    8. public class TestCyclicBarrier {  
    9. // 徒步需要的時間: Shenzhen, Guangzhou, Shaoguan, Changsha, Wuhan  
    10. private static int[] timeWalk = { 5, 8, 15, 15, 10 };  
    11. // 自駕游  
    12. private static int[] timeSelf = { 1, 3, 4, 4, 5 };  
    13. // 旅游大巴  
    14. private static int[] timeBus = { 2, 4, 6, 6, 7 };  
    15.   
    16. static String now() {  
    17. SimpleDateFormat sdf = new SimpleDateFormat(“HH:mm:ss”);  
    18. return sdf.format(new Date()) + “: “;  
    19. }  
    20.   
    21. static class Tour implements Runnable {  
    22. private int[] times;  
    23. private CyclicBarrier barrier;  
    24. private String tourName;  
    25. public Tour(CyclicBarrier barrier, String tourName, int[] times) {  
    26. this.times = times;  
    27. this.tourName = tourName;  
    28. this.barrier = barrier;  
    29. }  
    30. public void run() {  
    31. try {  
    32. Thread.sleep(times[0] * 1000);  
    33. System.out.println(now() + tourName + ” Reached Shenzhen”);  
    34. barrier.await();  
    35. Thread.sleep(times[1] * 1000);  
    36. System.out.println(now() + tourName + ” Reached Guangzhou”);  
    37. barrier.await();  
    38. Thread.sleep(times[2] * 1000);  
    39. System.out.println(now() + tourName + ” Reached Shaoguan”);  
    40. barrier.await();  
    41. Thread.sleep(times[3] * 1000);  
    42. System.out.println(now() + tourName + ” Reached Changsha”);  
    43. barrier.await();  
    44. Thread.sleep(times[4] * 1000);  
    45. System.out.println(now() + tourName + ” Reached Wuhan”);  
    46. barrier.await();  
    47. } catch (InterruptedException e) {  
    48. } catch (BrokenBarrierException e) {  
    49. }  
    50. }  
    51. }  
    52.   
    53. public static void main(String[] args) {  
    54. // 三個旅行團  
    55. CyclicBarrier barrier = new CyclicBarrier(3);  
    56. ExecutorService exec = Executors.newFixedThreadPool(3);  
    57. exec.submit(new Tour(barrier, “WalkTour”, timeWalk));  
    58. exec.submit(new Tour(barrier, “SelfTour”, timeSelf));  
    59. exec.submit(new Tour(barrier, “BusTour”, timeBus));  
    60. exec.shutdown();  
    61. }  
    62. }  

    運行結(jié)果:
    00:02:25: SelfTour Reached Shenzhen
    00:02:25: BusTour Reached Shenzhen
    00:02:27: WalkTour Reached Shenzhen
    00:02:30: SelfTour Reached Guangzhou
    00:02:31: BusTour Reached Guangzhou
    00:02:35: WalkTour Reached Guangzhou
    00:02:39: SelfTour Reached Shaoguan
    00:02:41: BusTour Reached Shaoguan

    并發(fā)庫中的BlockingQueue是一個比較好玩的類,顧名思義,就是阻塞隊列。該類主要提供了兩個方法put()和take(),前者將一 個對象放到隊列中,如果隊列已經(jīng)滿了,就等待直到有空閑節(jié)點;后者從head取一個對象,如果沒有對象,就等待直到有可取的對象。

    下面的例子比較簡單,一個讀線程,用于將要處理的文件對象添加到阻塞隊列中,另外四個寫線程用于取出文件對象,為了模擬寫操作耗時長的特點,特讓 線程睡眠一段隨機長度的時間。另外,該Demo也使用到了線程池和原子整型(AtomicInteger),AtomicInteger可以在并發(fā)情況下 達到原子化更新,避免使用了synchronized,而且性能非常高。由于阻塞隊列的put和take操作會阻塞,為了使線程退出,特在隊列中添加了一 個“標識”,算法中也叫“哨兵”,當發(fā)現(xiàn)這個哨兵后,寫線程就退出。

    當然線程池也要顯式退出了。

    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2. import java.io.File;  
    3. import java.io.FileFilter;  
    4. import java.util.concurrent.BlockingQueue;  
    5. import java.util.concurrent.ExecutorService;  
    6. import java.util.concurrent.Executors;  
    7. import java.util.concurrent.LinkedBlockingQueue;  
    8. import java.util.concurrent.atomic.AtomicInteger;  
    9.   
    10. public class TestBlockingQueue {  
    11. static long randomTime() {  
    12. return (long) (Math.random() * 1000);  
    13. }  
    14.   
    15. public static void main(String[] args) {  
    16. // 能容納100個文件  
    17. final BlockingQueue queue = new LinkedBlockingQueue(100);  
    18. // 線程池  
    19. final ExecutorService exec = Executors.newFixedThreadPool(5);  
    20. final File root = new File(“F:""JavaLib”);  
    21. // 完成標志  
    22. final File exitFile = new File(“”);  
    23. // 讀個數(shù)  
    24. final AtomicInteger rc = new AtomicInteger();  
    25. // 寫個數(shù)  
    26. final AtomicInteger wc = new AtomicInteger();  
    27. // 讀線程  
    28. Runnable read = new Runnable() {  
    29. public void run() {  
    30. scanFile(root);  
    31. scanFile(exitFile);  
    32. }  
    33.   
    34. public void scanFile(File file) {  
    35. if (file.isDirectory()) {  
    36. File[] files = file.listFiles(new FileFilter() {  
    37. public boolean accept(File pathname) {  
    38. return pathname.isDirectory()  
    39. || pathname.getPath().endsWith(“.java”);  
    40. }  
    41. });  
    42. for (File one : files)  
    43. scanFile(one);  
    44. } else {  
    45. try {  
    46. int index = rc.incrementAndGet();  
    47. System.out.println(“Read0: ” + index + ” “  
    48. + file.getPath());  
    49. queue.put(file);  
    50. } catch (InterruptedException e) {  
    51. }  
    52. }  
    53. }  
    54. };  
    55. exec.submit(read);  
    56. // 四個寫線程  
    57. for (int index = 0; index < 4; index++) {  
    58. // write thread  
    59. final int NO = index;  
    60. Runnable write = new Runnable() {  
    61. String threadName = “Write” + NO;  
    62. public void run() {  
    63. while (true) {  
    64. try {  
    65. Thread.sleep(randomTime());  
    66. int index = wc.incrementAndGet();  
    67. File file = queue.take();  
    68. // 隊列已經(jīng)無對象  
    69. if (file == exitFile) {  
    70. // 再次添加”標志”,以讓其他線程正常退出  
    71. queue.put(exitFile);  
    72. break;  
    73. }  
    74. System.out.println(threadName + “: ” + index + ” “  
    75. + file.getPath());  
    76. } catch (InterruptedException e) {  
    77. }  
    78. }  
    79. }  
    80. };  
    81. exec.submit(write);  
    82. }  
    83. exec.shutdown();  
    84. }  
    85. }  

    從名字可以看出,CountDownLatch是一個倒數(shù)計數(shù)的鎖,當?shù)箶?shù)到0時觸發(fā)事件,也就是開鎖,其他人就可以進入了。在一些應(yīng)用場合中,需要等待某個條件達到要求后才能做后面的事情;同時當線程都完成后也會觸發(fā)事件,以便進行后面的操作。


    CountDownLatch最重要的方法是countDown()和await(),前者主要是倒數(shù)一次,后者是等待倒數(shù)到0,如果沒有到達0,就只有阻塞等待了。

    一個CountDouwnLatch實例是不能重復(fù)使用的,也就是說它是一次性的,鎖一經(jīng)被打開就不能再關(guān)閉使用了,如果想重復(fù)使用,請考慮使用CyclicBarrier。

    下面的例子簡單的說明了CountDownLatch的使用方法,模擬了100米賽跑,10名選手已經(jīng)準備就緒,只等裁判一聲令下。當所有人都到達終點時,比賽結(jié)束。

    同樣,線程池需要顯式shutdown。
    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2.   
    3. import java.util.concurrent.CountDownLatch;  
    4. import java.util.concurrent.ExecutorService;  
    5. import java.util.concurrent.Executors;  
    6.   
    7. public class TestCountDownLatch {  
    8. public static void main(String[] args) throws InterruptedException {  
    9. // 開始的倒數(shù)鎖  
    10. final CountDownLatch begin = new CountDownLatch(1);  
    11. // 結(jié)束的倒數(shù)鎖  
    12. final CountDownLatch end = new CountDownLatch(10);  
    13. // 十名選手  
    14. final ExecutorService exec = Executors.newFixedThreadPool(10);  
    15. for(int index = 0; index < 10; index++) {  
    16. final int NO = index + 1;  
    17. Runnable run = new Runnable(){  
    18. public void run() {  
    19. try {  
    20. begin.await();  
    21. Thread.sleep((long) (Math.random() * 10000));  
    22. System.out.println(“No.” + NO + ” arrived”);  
    23. } catch (InterruptedException e) {  
    24. } finally {  
    25. end.countDown();  
    26. }  
    27. }  
    28. };  
    29. exec.submit(run);  
    30. }  
    31. System.out.println(“Game Start”);  
    32. begin.countDown();  
    33. end.await();  
    34. System.out.println(“Game Over”);  
    35. exec.shutdown();  
    36. }  
    37. }  

    運行結(jié)果:
    Game Start
    No.4 arrived
    No.1 arrived
    No.7 arrived
    No.9 arrived
    No.3 arrived
    No.2 arrived
    No.8 arrived
    No.10 arrived
    No.6 arrived
    No.5 arrived
    Game Over

    有時候在實際應(yīng)用中,某些操作很耗時,但又不是不可或缺的步驟。比如用網(wǎng)頁瀏覽器瀏覽新聞時,最重要的是要顯示文字內(nèi)容,至于與新聞相匹配的圖片 就沒有那么重要的,所以此時首先保證文字信息先顯示,而圖片信息會后顯示,但又不能不顯示,由于下載圖片是一個耗時的操作,所以必須一開始就得下載。


    Java的并發(fā)庫的Future類就可以滿足這個要求。Future的重要方法包括get()和cancel(),get()獲取數(shù)據(jù)對象,如果 數(shù)據(jù)沒有加載,就會阻塞直到取到數(shù)據(jù),而 cancel()是取消數(shù)據(jù)加載。另外一個get(timeout)操作,表示如果在timeout時間內(nèi)沒有取到就失敗返回,而不再阻塞。

    下面的Demo簡單的說明了Future的使用方法:一個非常耗時的操作必須一開始啟動,但又不能一直等待;其他重要的事情又必須做,等完成后,就可以做不重要的事情。
    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2.   
    3. import java.util.concurrent.Callable;  
    4. import java.util.concurrent.ExecutionException;  
    5. import java.util.concurrent.ExecutorService;  
    6. import java.util.concurrent.Executors;  
    7. import java.util.concurrent.Future;  
    8.   
    9. public class TestFutureTask {  
    10. public static void main(String[] args)throws InterruptedException,  
    11. ExecutionException {  
    12. final ExecutorService exec = Executors.newFixedThreadPool(5);  
    13. Callable call = new Callable() {  
    14. public String call() throws Exception {  
    15. Thread.sleep(1000 * 5);  
    16. return “Other less important but longtime things.”;  
    17. }  
    18. };  
    19. Future task = exec.submit(call);  
    20. // 重要的事情  
    21. Thread.sleep(1000 * 3);  
    22. System.out.println(“Let’s do important things.”);  
    23. // 其他不重要的事情  
    24. String obj = task.get();  
    25. System.out.println(obj);  
    26. // 關(guān)閉線程池  
    27. exec.shutdown();  
    28. }  
    29. }  

    運行結(jié)果:
    Let’s do important things.
    Other less important but longtime things.

    考慮以下場景:瀏覽網(wǎng)頁時,瀏覽器了5個線程下載網(wǎng)頁中的圖片文件,由于圖片大小、網(wǎng)站訪問速度等諸多因素的影響,完成圖片下載的時間就會有很大的不同。如果先下載完成的圖片就會被先顯示到界面上,反之,后下載的圖片就后顯示。


    Java的并發(fā)庫的CompletionService可以滿足這種場景要求。該接口有兩個重要方法:submit()和take()。 submit用于提交一個runnable或者callable,一般會提交給一個線程池處理;而take就是取出已經(jīng)執(zhí)行完畢runnable或者 callable實例的Future對象,如果沒有滿足要求的,就等待了。 CompletionService還有一個對應(yīng)的方法poll,該方法與take類似,只是不會等待,如果沒有滿足要求,就返回null對象。
    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2.   
    3. import java.util.concurrent.Callable;  
    4. import java.util.concurrent.CompletionService;  
    5. import java.util.concurrent.ExecutionException;  
    6. import java.util.concurrent.ExecutorCompletionService;  
    7. import java.util.concurrent.ExecutorService;  
    8. import java.util.concurrent.Executors;  
    9. import java.util.concurrent.Future;  
    10.   
    11. public class TestCompletionService {  
    12. public static void main(String[] args) throws InterruptedException,  
    13. ExecutionException {  
    14. ExecutorService exec = Executors.newFixedThreadPool(10);  
    15. CompletionService serv =  
    16. new ExecutorCompletionService(exec);  
    17.   
    18. for (int index = 0; index < 5; index++) {  
    19. final int NO = index;  
    20. Callable downImg = new Callable() {  
    21. public String call() throws Exception {  
    22. Thread.sleep((long) (Math.random() * 10000));  
    23. return “Downloaded Image ” + NO;  
    24. }  
    25. };  
    26. serv.submit(downImg);  
    27. }  
    28.   
    29. Thread.sleep(1000 * 2);  
    30. System.out.println(“Show web content”);  
    31. for (int index = 0; index < 5; index++) {  
    32. Future task = serv.take();  
    33. String img = task.get();  
    34. System.out.println(img);  
    35. }  
    36. System.out.println(“End”);  
    37. // 關(guān)閉線程池  
    38. exec.shutdown();  
    39. }  
    40. }  

    運行結(jié)果:
    Show web content
    Downloaded Image 1
    Downloaded Image 2
    Downloaded Image 4
    Downloaded Image 0
    Downloaded Image 3
    End

    操作系統(tǒng)的信號量是個很重要的概念,在進程控制方面都有應(yīng)用。Java并發(fā)庫的Semaphore可以很輕松完成信號量控制,Semaphore 可以控制某個資源可被同時訪問的個數(shù),acquire()獲取一個許可,如果沒有就等待,而release()釋放一個許可。比如在Windows下可以 設(shè)置共享文件的最大客戶端訪問個數(shù)。

    Semaphore維護了當前訪問的個數(shù),提供同步機制,控制同時訪問的個數(shù)。在數(shù)據(jù)結(jié)構(gòu)中鏈表可以保存“無限”的節(jié)點,用Semaphore可以實現(xiàn)有限大小的鏈表。另外重入鎖ReentrantLock也可以實現(xiàn)該功能,但實現(xiàn)上要負責(zé)些,代碼也要復(fù)雜些。

    下面的Demo中申明了一個只有5個許可的Semaphore,而有20個線程要訪問這個資源,通過acquire()和release()獲取和釋放訪問許可。
    Java代碼 復(fù)制代碼
    1. package concurrent;  
    2.   
    3. import java.util.concurrent.ExecutorService;  
    4. import java.util.concurrent.Executors;  
    5. import java.util.concurrent.Semaphore;  
    6.   
    7. public class TestSemaphore {  
    8. public static void main(String[] args) {  
    9. // 線程池  
    10. ExecutorService exec = Executors.newCachedThreadPool();  
    11. // 只能5個線程同時訪問  
    12. final Semaphore semp = new Semaphore(5);  
    13. // 模擬20個客戶端訪問  
    14. for (int index = 0; index < 20; index++) {  
    15. final int NO = index;  
    16. Runnable run = new Runnable() {  
    17. public void run() {  
    18. try {  
    19. // 獲取許可  
    20. semp.acquire();  
    21. System.out.println(“Accessing: ” + NO);  
    22. Thread.sleep((long) (Math.random() * 10000));  
    23. // 訪問完后,釋放  
    24. semp.release();  
    25. } catch (InterruptedException e) {  
    26. }  
    27. }  
    28. };  
    29. exec.execute(run);  
    30. }  
    31. // 退出線程池  
    32. exec.shutdown();  
    33. }  
    34. }  

    運行結(jié)果:
    Accessing: 0
    Accessing: 1
    Accessing: 2
    Accessing: 3
    Accessing: 4
    Accessing: 5
    Accessing: 6
    Accessing: 7
    Accessing: 8
    Accessing: 9
    Accessing: 10
    Accessing: 11
    Accessing: 12
    Accessing: 13
    Accessing: 14
    Accessing: 15
    Accessing: 16
    Accessing: 17
    Accessing: 18
    Accessing: 19
    主站蜘蛛池模板: 国产精品99爱免费视频| a毛片免费全部在线播放**| 无码国产亚洲日韩国精品视频一区二区三区 | 亚洲精品国产电影| 3344在线看片免费| 亚洲第一成人在线| 亚洲美女高清一区二区三区| 日韩精品无码免费一区二区三区| 亚洲fuli在线观看| 国产啪亚洲国产精品无码| 亚洲成人在线免费观看| 羞羞漫画登录页面免费| 久久亚洲免费视频| 国产成人高清精品免费鸭子| 久久久久久久99精品免费观看| 亚洲中文无码线在线观看| 2048亚洲精品国产| 成年黄网站色大免费全看| 一级做a爰性色毛片免费| 狠狠色伊人亚洲综合网站色| 国产亚洲人成网站在线观看不卡| 最近2019中文字幕mv免费看| 你好老叔电影观看免费| 亚洲Av永久无码精品一区二区| 亚洲AV无码专区国产乱码4SE | 99视频免费观看| 青青草国产免费国产是公开| 亚洲日韩乱码中文无码蜜桃| 国产亚洲精品无码拍拍拍色欲| 成年女人免费碰碰视频| 8x网站免费入口在线观看| 成年网站免费入口在线观看| 亚洲国产精品精华液| 亚洲综合激情另类小说区| 国产亚洲精午夜久久久久久| 国产精品国产自线拍免费软件| 亚洲一级毛片免费观看| AAA日本高清在线播放免费观看| 色屁屁www影院免费观看视频| 一本色道久久综合亚洲精品蜜桃冫| 亚洲成色WWW久久网站|