17.死锁
作者:互联网
死锁
多个线程各自占有一些共享资源,并且相互等待其他线程占有的资源才能运行,而导致两个或者多个线程都在等待对方释放资源,都停止执行的情形,某一个同步块同时拥有,两个以上对象的所时,就可能会发生死锁的问题
死锁避免的方法
产生死锁的四个必要条件:
-
互斥条件:一个资源每次只能被一个进程使用
-
请求与保持条件:一个进程因请求资源而阻塞时,对已获得的资源保持不放
-
不剥夺条件:进程以获得资源,在未使用完之前,不能强行剥夺
-
循环等待条件:若干进程之间形成一种头尾相接的循环等待资源关系
破解以上一个,或者多个条件就可以避免发生死锁
死锁:
package com.syn;
//死锁:多个线程互相抱着对方需要的资源,然后形成僵持
public class DeadLock {
public static void main(String[] args) {
Makeup makeup = new Makeup(0,"小宁");
Makeup makeup1 = new Makeup(1,"小猪");
makeup.start();
makeup1.start();
}
}
//口红
class Lipstick{
}
//镜子
class Mirror{
}
//化妆
class Makeup extends Thread{
//需要的资源只有一份,用static来保证只有一份
static Lipstick lipstick = new Lipstick();
static Mirror mirror = new Mirror();
int choice; //选择
String girName; //使用化妆品的人
public Makeup(int choice, String girName) {
this.choice = choice;
this.girName = girName;
}
@Override
public void run() {
try {
makeup();
} catch (InterruptedException e) {
e.printStackTrace();
}
//化妆
}
//化妆,互相持有对方的锁,就是需要拿到对方的资源
private void makeup() throws InterruptedException {
if(choice==0){
synchronized (lipstick){ //获得口红的锁
System.out.println(this.girName+"获得口红的锁");
Thread.sleep(1000);
synchronized (mirror){ //一秒钟后获得镜子
System.out.println(this.girName+"获得镜子的锁");
}
}
}else{
synchronized (mirror){ //获得镜子
System.out.println(this.girName+"获得口红的锁");
Thread.sleep(2000);
synchronized (lipstick){ //一秒钟后获得口红
System.out.println(this.girName+"获得镜子的锁");
}
}
}
}
}
解决死锁,不要让两个人报同一把锁
package com.syn;
//死锁:多个线程互相抱着对方需要的资源,然后形成僵持
public class DeadLock {
public static void main(String[] args) {
Makeup makeup = new Makeup(0,"小宁");
Makeup makeup1 = new Makeup(1,"小猪");
makeup.start();
makeup1.start();
}
}
//口红
class Lipstick{
}
//镜子
class Mirror{
}
//化妆
class Makeup extends Thread{
//需要的资源只有一份,用static来保证只有一份
static Lipstick lipstick = new Lipstick();
static Mirror mirror = new Mirror();
int choice; //选择
String girName; //使用化妆品的人
public Makeup(int choice, String girName) {
this.choice = choice;
this.girName = girName;
}
@Override
public void run() {
try {
makeup();
} catch (InterruptedException e) {
e.printStackTrace();
}
//化妆
}
//化妆,互相持有对方的锁,就是需要拿到对方的资源
private void makeup() throws InterruptedException {
if(choice==0){
synchronized (lipstick){ //获得口红的锁
System.out.println(this.girName+"获得口红的锁");
Thread.sleep(1000);
}
synchronized (mirror){ //一秒钟后获得镜子
System.out.println(this.girName+"获得镜子的锁");
}
}else{
synchronized (mirror){ //获得镜子
System.out.println(this.girName+"获得口红的锁");
Thread.sleep(2000);
}
synchronized (lipstick){ //一秒钟后获得口红
System.out.println(this.girName+"获得镜子的锁");
}
}
}
}
标签:17,口红,Makeup,System,choice,死锁,girName 来源: https://www.cnblogs.com/471356133ninglei/p/15357146.html