前言 無聊的時候做了一個搜索文章的軟體,有沒有更加的方便快捷不知道,好玩就行了 環境使用 Python 3.8 Pycharm 模塊使用 import requests import tkinter as tk from tkinter import ttk import webbrowser 最終 ...
今天筆者收到老師的一個題目,讓我準備兩個流程,依次實現輸出以下信息
如:
線程A 列印 字母a ,線程B 列印數字1
線程A 列印 字母b ,線程B 列印數字2
線程A 列印 字母c ,線程B 列印數字3
線程A 列印 字母d ,線程B 列印數字4
。。。
依次列印完畢26個字母和26個數字
,輸出效果為:
a1b2c3...z26
下文筆者就將具體的實現思路展示如下:
1.將藉助多線程的wait方法
2.藉助一個外部變數
package com.java265.other;
public class Test6 {
/*
* 兩個線程 一個線程輸出 a b c d e f 一個線程輸出 1 2 3 4 5 交叉輸出 a 1 b 2 c 3
*/
static boolean flag = false;
public static void main(String[] args) {
Object o = new Object();
Thread t1, t2;
t1 = new Thread(() -> {
for (int i = 0; i < 26; ) {
synchronized (o) {
if (!flag) {
char t = (char) (i + (int) 'a');
System.out.print(t);
i++;
try {
o.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
flag = false;
o.notifyAll();
}
}
}
});
t2 = new Thread(() -> {
for (int i = 1; i <= 26;) {
synchronized (o) {
if (flag) {
System.out.print(i);
i++;
try {
o.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
flag = true;
o.notifyAll();
}
}
});
t1.start();
t2.start();
}
}
http://java265.com/JavaMianJing/202112/16383980681974.html