面试多线程题

多线程打印奇偶数

Sychronized写法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
public class PrintOddEven {
private static int MAX_COUNT = 10;
private static int num = 1;
private static Object lock = new Object();

public static void print(int isOdd) {
for (int i = 0; i < MAX_COUNT; i++) {
synchronized (lock) {
while (num % 2 != isOdd) {
try {
lock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}

System.out.println(Thread.currentThread().getName() + ": " + num);
num++;
lock.notify();
}
}
}

public static void main(String[] args) throws InterruptedException {
Thread threadA = new Thread(new Runnable() {
@Override
public void run() {
print(0);
}
}, "Thread-a");

Thread threadB = new Thread(new Runnable() {
@Override
public void run() {
print(1);
}
}, "Thread-b");

threadA.start();
threadB.start();

threadA.join();
threadB.join();
}
}

ReentrantLock写法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
public class PrintOddEvenReentrant {
private static int MAX_COUNT = 10;
private static int num = 1;
private static ReentrantLock lock = new ReentrantLock();
private static Condition odd = lock.newCondition();
private static Condition even = lock.newCondition();

public static void printOdd() {
for (int i = 0; i < MAX_COUNT; i++) {
lock.lock();
try {
while (num % 2 != 1) {
odd.await();
}
System.out.println(Thread.currentThread().getName() + ": " + num);
num++;
even.signal();
} catch (InterruptedException e) {
throw new RuntimeException(e);
} finally {
lock.unlock();
}
}
}

public static void printEven() {
for (int i = 0; i < MAX_COUNT; i++) {
lock.lock();
try {
while (num % 2 != 0) {
even.await();
}
System.out.println(Thread.currentThread().getName() + ": " + num);
num++;
odd.signal();
} catch (InterruptedException e) {
throw new RuntimeException(e);
} finally {
lock.unlock();
}
}
}

public static void main(String[] args) throws InterruptedException {
Thread threadA = new Thread(new Runnable() {
@Override
public void run() {
printOdd();
}
}, "Thread-a");

Thread threadB = new Thread(new Runnable() {
@Override
public void run() {
printEven();
}
}, "Thread-b");

threadA.start();
threadB.start();

threadA.join();
threadB.join();
}
}

面试多线程题
http://hhubibi.github.io/2024/09/06/multithread/
作者
hhubibi
发布于
2024年9月6日
许可协议