博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java多线程的~~~Lock接口和ReentrantLock使用
阅读量:5735 次
发布时间:2019-06-18

本文共 1495 字,大约阅读时间需要 4 分钟。

在多线程开发。除了synchronized这个keyword外,我们还通过Lock接口来实现这样的效果。由Lock接口来实现

这样的多线程加锁效果的优点是非常的灵活,我们不在须要对整个函数加锁,并且能够非常方便的把他放在我们函数的不论什么

一个地方,很的称心,并且从效率上来说。使用Lock接口要比使用synchronizedkeyword效率高一些,以下我们来使用

一个样例来说明这样的方法的使用。

package com.bird.concursey.charpet3;public class Job implements Runnable {	private PrintQueue printQueue;	public Job(PrintQueue printQueue) {		this.printQueue = printQueue;	}	@Override	public void run() {		System.out.printf("%s: Going to print a document\n", Thread				.currentThread().getName());		printQueue.printJob(new Object());		System.out.printf("%s: The document has been printed\n", Thread				.currentThread().getName());	}}

package com.bird.concursey.charpet3;import java.util.concurrent.locks.Lock;import java.util.concurrent.locks.ReentrantLock;public class PrintQueue {		private final Lock queueLock = new ReentrantLock();		public void printJob(Object document) {		queueLock.lock();		Long duration=(long)(Math.random() * 10000);		System.out.println(Thread.currentThread().getName()+ ":PrintQueue: Printing a Job during "+(duration/1000)+" seconds");		try {			Thread.sleep(duration);		} catch (InterruptedException e) {			e.printStackTrace();		}finally{			queueLock.unlock();		}	}		public static void main(String[] args) {		PrintQueue printQueue = new PrintQueue();		Thread thread[] = new Thread[10];		for(int i = 0; i < 10; i++) {			thread[i] = new Thread(new Job(printQueue), "Thread " + i);		}		for(int i = 0; i < 10; i++) {			thread[i].start();		}	}}

版权声明:本文博客原创文章,博客,未经同意,不得转载。

你可能感兴趣的文章
干货 | JAVA代码引起的NATIVE野指针问题(上)
查看>>
POI getDataFormat() 格式对照
查看>>
Python 中的进程、线程、协程、同步、异步、回调
查看>>
好的产品原型具有哪些特点?
查看>>
实现java导出文件弹出下载框让用户选择路径
查看>>
刨根问底--技术--jsoup登陆网站
查看>>
OSChina 五一劳动节乱弹 ——女孩子晚上不要出门,发生了这样的事情
查看>>
Spring--通过注解来配置bean
查看>>
pandas 十分钟入门
查看>>
nginx rewrite
查看>>
前端安全系列(一):如何防止XSS攻击?
查看>>
IK分词器安装
查看>>
查看Linux并发连接数
查看>>
你是谁不重要,关键是你跟谁!
查看>>
CSS中规则@media的用法
查看>>
pychecker:分析你的python代码
查看>>
css 默认不显示 之后显示
查看>>
我的友情链接
查看>>
DNS显性+隐性URL转发原理
查看>>
我的友情链接
查看>>