Java同步synchronized与死锁
多个线程要操作同一资源时就有可能出现资源的同步问题。
同步就是指多个操作在同一个时间段内只能有一个线程进行,其他线程要等待此线程完成之后才可以继续执行。
解决资源共享的同步操作,可以使用同步代码块和同步方法两种方式完成。
<1>同步代码块
所谓代码块就是指使用“{}"括起来的一段代码,根据其位置和声明的不同,可以分为普通代码块、构造块、静态块3种,如果在代码块上加上synchronized关键字,则此代码块就称为同步代码块。
package java_thread;
//=================================================
// File Name : Runnable_demo2
//------------------------------------------------------------------------------
// Author : Common // 类名:MyThread_2
// 属性:
// 方法:
class MyThread_2 implements Runnable{
private int ticket = 5; @Override
public void run() { //覆写Thread类中的run()方法
// TODO 自动生成的方法存根
for (int i=0;i<10;i++){
synchronized (this) { //设置需要同步的操作
if(ticket>0){
try{
Thread.sleep(300);
}catch(InterruptedException e){
e.printStackTrace();
}
System.out.println("卖票:ticket="+ticket--);
}
}
// this.sale(); //调用同步方法
}
} } //主类
//Function : Thread_demo2
public class Runnable_demo2 { public static void main(String[] args) {
// TODO 自动生成的方法存根
MyThread_2 mt = new MyThread_2(); //实例化Runnable子类对象
Thread t1 = new Thread(mt); //实例化Thread类对象
Thread t2 = new Thread(mt); //实例化Thread类对象
Thread t3 = new Thread(mt); //实例化Thread类对象
t1.start(); //启动线程
t2.start(); //启动线程
t3.start(); //启动线程
} }
package java_thread; class Output{
public void output(String name){
int len = name.length();
synchronized(this){ //不能使用name,因为“输出1”和"输出2"两个字符串不是同一个对象
for(int i=0;i<len;i++){
System.out.print(name.charAt(i));
}
System.out.println();
}
}
} public class Huchi { private void init(){
final Output outputer = new Output();
//线程1
new Thread(new Runnable(){
@Override
public void run() { //覆写Thread类中的run()方法
while(true){
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
//new Output().output("输出1"); //也不能new对象,new对象的话,this就不代表同一个对象了
outputer.output("输出1");
}
}
}).start(); //线程2
new Thread(new Runnable(){
@Override
public void run() { //覆写Thread类中的run()方法
while(true){
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
//new Output().output("输出1"); //也不能new对象,new对象的话,this就不代表同一个对象了
outputer.output("输出2");
}
}
}).start(); } public static void main(String[] args) {
// TODO 自动生成的方法存根
new Huchi().init();
} }
<2>同步方法
也可以使用synchronized关键字将一个方法声明成同步方法
//=================================================
// File Name : Thread_demo
//------------------------------------------------------------------------------
// Author : Common // 接口名:MyThread
// 属性:
// 方法:
class MyThread_2 implements Runnable{
private int ticket = 5; @Override
public void run() { //覆写Thread类中的run()方法
// TODO 自动生成的方法存根
for (int i=0;i<10;i++){
this.sale(); //调用同步方法
}
} public synchronized void sale(){ //声明同步方法
if(ticket>0){
try{
Thread.sleep(300);
}catch(InterruptedException e){
e.printStackTrace();
}
System.out.println("卖票:ticket="+ticket--);
}
} } //主类
//Function : Thread_demo2
public class Runnable_demo2 { public static void main(String[] args) {
// TODO 自动生成的方法存根
MyThread_2 mt = new MyThread_2(); //实例化Runnable子类对象
Thread t1 = new Thread(mt); //实例化Thread类对象
Thread t2 = new Thread(mt); //实例化Thread类对象
Thread t3 = new Thread(mt); //实例化Thread类对象
t1.start(); //启动线程
t2.start(); //启动线程
t3.start(); //启动线程
} }
死锁就是指两个线程都在等待彼此先完成,造成了程序的停滞,一般程序的死锁都是在程序运行时出现的。
多个线程共享同一资源时需要进行同步,以保证资源操作的完整性,但是过多的同步就有可能产生死锁。
生产者不断生产,消费者不断取走生产者生产的产品
//=================================================
// File Name : ThreadInfo_demo
//------------------------------------------------------------------------------
// Author : Common // 类名:Info
// 属性:
// 方法:
class Info{
private String name = "张三";
private String content = "学生";
private boolean flag = false; public synchronized void set(String name,String content){ //设置信息名称及内容
if(!flag){ //标志位为false,不可以生产,在这里等待取走
try{
super.wait(); //等待消费者取走
}catch(InterruptedException e){
e.printStackTrace();
}
}
this.setName(name); //设置信息名称
try{
Thread.sleep(300); //加入延迟
}catch(InterruptedException e){
e.printStackTrace();
}
this.setContent(content); //设置信息内容
flag = false; //标志位为true,表示可以取走
super.notify(); //唤醒等待线程
} public synchronized void get(){ //取得信息内容
if(flag){ //标志位为true,不可以取走
try{
super.wait(); //等待生产者生产
}catch(InterruptedException e){
e.printStackTrace();
}
}
try {
Thread.sleep(300); //加入延迟
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(this.getName()+"-->"+this.getContent()); //输出信息
flag = true; //修改标志位为true,表示可以生产
super.notify(); //唤醒等待线程
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public String getContent() {
return content;
} public void setContent(String content) {
this.content = content;
} } //类名:Producer
//属性:
//方法:
class Producer implements Runnable{ //定义生产者线程 private Info info = null; //保存Info引用 public Producer(Info info) { //构造函数
super();
this.info = info;
} @Override
public void run() {
// TODO 自动生成的方法存根
boolean flag = false;
for(int i=0;i<50;i++){ //50次反复修改name和content的值
if(flag){
this.info.set("张三", "学生");
flag = false;
}else{
this.info.set("李四", "老师");
flag = true;
}
}
} } //类名:Consumer
//属性:
//方法:
class Consumer implements Runnable{ //定义生产者线程 private Info info = null; //保存Info引用 public Consumer(Info info) { //构造函数
super();
this.info = info;
} @Override
public void run() {
// TODO 自动生成的方法存根
for(int i=0;i<50;i++){ //50次反复修改name和content的值
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
this.info.get();
}
} } //主类
//Function : ThreadInfo_demo
public class ThreadInfo_demo { public static void main(String[] args) {
// TODO 自动生成的方法存根
Info i = new Info();
Producer pro = new Producer(i);
Consumer con = new Consumer(i);
new Thread(pro).start();
new Thread(con).start();
} }
停止线程运行
在多线程的开发中可以通过设置标志位的方式停止一个线程的运行
//=================================================
// File Name : ThreadInfo_demo
//------------------------------------------------------------------------------
// Author : Common // 类名:MYThread
// 属性:
// 方法:
class MYThread implements Runnable{ private boolean flag = true; //定义标志位属性 @Override
public void run() {
// TODO 自动生成的方法存根
int i = 0;
while(this.flag){ //循环输出
while(true){
System.out.println(Thread.currentThread().getName()+(i++)); //输出当前线程名称
}
}
} public void stop(){ //编写停止方法
this.flag = false; //修改标志位
} } //主类
//Function : ThreadStop_demo
public class ThreadStop_demo { public static void main(String[] args) {
// TODO 自动生成的方法存根
MYThread my = new MYThread();
Thread t = new Thread(my,"线程");
t.start();
my.stop();
} }
互斥性
output1和output2两段代码互斥,检查的都是outputer这个对象
package java_thread; class Output{
public void output(String name){
int len = name.length();
synchronized(this){ //不能使用name,因为“输出1”和"输出2"两个字符串不是同一个对象
for(int i=0;i<len;i++){
System.out.print(name.charAt(i));
}
System.out.println();
}
} public synchronized void output2(String name){ //output1和output2两段代码互斥,检查的都是outputer这个对象
int len = name.length();
for(int i=0;i<len;i++){
System.out.print(name.charAt(i));
}
System.out.println();
}
} public class Huchi { private void init(){
final Output outputer = new Output();
//线程1
new Thread(new Runnable(){
@Override
public void run() { //覆写Thread类中的run()方法
while(true){
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
//new Output().output("输出1"); //也不能new对象,new对象的话,this就不代表同一个对象了
outputer.output("输出1");
}
}
}).start(); //线程2
new Thread(new Runnable(){
@Override
public void run() { //覆写Thread类中的run()方法
while(true){
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
//new Output().output("输出1"); //也不能new对象,new对象的话,this就不代表同一个对象了
outputer.output2("输出2");
}
}
}).start(); } public static void main(String[] args) {
// TODO 自动生成的方法存根
new Huchi().init();
} }
static静态方法调用的对象是字节码对象,所以要把output1的this改成Output.class
package java_thread; class Output{
public void output1(String name){
int len = name.length();
synchronized(this){ //不能使用name,因为“输出1”和"输出2"两个字符串不是同一个对象
for(int i=0;i<len;i++){
System.out.print(name.charAt(i));
}
System.out.println();
}
} //static静态方法调用的对象是字节码对象,所以要把output1的this改成Output.class
public static synchronized void output3(String name){ //output1和output3不同步,除非把output1的this改成Output.class
int len = name.length();
for(int i=0;i<len;i++){
System.out.print(name.charAt(i));
}
System.out.println();
} } public class Huchi { private void init(){
final Output outputer = new Output();
//线程1
new Thread(new Runnable(){
@Override
public void run() { //覆写Thread类中的run()方法
while(true){
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
//new Output().output("输出1"); //也不能new对象,new对象的话,this就不代表同一个对象了
outputer.output1("输出1");
}
}
}).start(); //线程2
new Thread(new Runnable(){
@Override
public void run() { //覆写Thread类中的run()方法
while(true){
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
//new Output().output("输出1"); //也不能new对象,new对象的话,this就不代表同一个对象了
outputer.output3("输出2");
}
}
}).start(); } public static void main(String[] args) {
// TODO 自动生成的方法存根
new Huchi().init();
} }
this Output.class
面试题:子线程循环 10 次,接着主线程循环 100,接着又回到子线程循环 10 次,接着再回到主线程又循环 100,如此循环50 次,请写出程序
package java_thread; import java.util.concurrent.atomic.AtomicInteger;
//张孝祥java面试题28
//子线程循环 10 次,接着主线程循环 100,接着又回到子线程循环 10 次,接着再回到主线程又循环 100,如此循环50 次,请写出程序 public class TraditionalThreadCommunication { /**
* @param args
*/
public static void main(String[] args) {
final Business business = new Business();
new Thread(
new Runnable() {
@Override
public void run() {
for(int i=1;i<=50;i++){
business.sub(i);
}
}
}
).start(); for(int i=1;i<=50;i++){
business.main(i);
} }
} class Business {
private boolean bShouldSub = true;
public synchronized void sub(int i){
while(!bShouldSub){
try {
this.wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
for(int j=1;j<=10;j++){
System.out.println("sub thread sequence of " + j + ",loop of " + i);
}
bShouldSub = false;
this.notify();
} public synchronized void main(int i){
while(bShouldSub){
try {
this.wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
for(int j=1;j<=100;j++){
System.out.println("main thread sequence of " + j + ",loop of " + i);
}
bShouldSub = true;
this.notify();
}
}
Java同步synchronized与死锁的更多相关文章
- java同步synchronized
java同步synchronized volatile仅仅用来保证该变量对所有线程的可见性,但不保证原子性. 看下面的这段代码: /** * * @author InJavaWeTrust * */ ...
- 转:Java同步synchronized使用
原文链接 作者:Jakob Jenkov Java 同步块(synchronized block)用来标记方法或者代码块是同步的.Java同步块用来避免竞争.本文介绍以下内容: Java同步关键字(s ...
- java 同步 synchronized
http://www.cnblogs.com/Qian123/p/5691705.html http://www.cnblogs.com/GnagWang/archive/2011/02/27/196 ...
- Java的synchronized关键字:同步机制总结
JAVA中synchronized关键字能够作为函数的修饰符,也可作为函数内的语句,也就是平时说的同步方法和同步语句块.搞清楚synchronized锁定的是哪个对象,就能帮助我们设计更安全的多线程程 ...
- 015-线程同步-synchronized几种加锁方式、Java对象头和Monitor、Mutex Lock、JDK1.6对synchronized锁的优化实现
一.synchronized概述基本使用 为确保共享变量不会出现并发问题,通常会对修改共享变量的代码块用synchronized加锁,确保同一时刻只有一个线程在修改共享变量,从而避免并发问题. syn ...
- Java同步机制总结--synchronized
不久前用到了同步,现在回过头来对JAVA中的同步做个总结,以对前段时间工作的总结和自我技术的条理话.JAVA中synchronized关键字能够 作为函数的修饰符,也可作为函数内的语句,也就是平时说的 ...
- Java多线程-同步:synchronized 和线程通信:生产者消费者模式
大家伙周末愉快,小乐又来给大家献上技术大餐.上次是说到了Java多线程的创建和状态|乐字节,接下来,我们再来接着说Java多线程-同步:synchronized 和线程通信:生产者消费者模式. 一.同 ...
- Java多线程同步 synchronized 关键字的使用
代表这个方法加锁,相当于不管哪一个线程A每次运行到这个方法时,都要检查有没有其它正在用这个方法的线程B(或者C D等),有的话要等正在使用这个方法的线程B(或者C D)运行完这个方法后再运行此线程A, ...
- java:同步和死锁
多个线程共享一个资源的时候需要进行同步(否则会出现错误:如负数,重复数),但是过多的同步会造成死锁. synchronized(this) { } 非同步情况: public class SyncTh ...
随机推荐
- Day Seven(Beta)
站立式会议 站立式会议内容总结 331 今天: 1)阅读html 5+文档 未来走h5路线 2)restful,未来开发接口 3)h5+demo运行 4)get 代码:a||(a=as); 5)js ...
- android file path
问题 出现的异常为:java.lang.IllegalArgumentException: File /mnt/sdcard/crazyit.bin contains a pathseparator. ...
- 开发错误记录8:Unable to instantiate application com
开发错误记录8:Unable to instantiate application com.android.tools.fd.runtime.BootstrapApplication 这是因为在And ...
- openwrt刷机后配置PPPOE上网方法
参考下帖13#的方式: 如何编辑配置openwrt,来实现pppoe拨号上网? 但其中有一句代码有错误: option 'peerdns' '0',其中需将‘0’改为‘1’
- Swift开发小技巧--扫描二维码,二维码的描边与锁定,设置扫描范围,二维码的生成(高清,无码,你懂得!)
二维码的扫描,二维码的锁定与描边,二维码的扫描范围,二维码的生成(高清,无码,你懂得!),识别相册中的二维码 扫描二维码用到的三个重要对象的关系,如图: 1.懒加载各种类 // MARK: - 懒加载 ...
- lucene-查询query->PhraseQuery多关键字的搜索
用户在搜索引擎中进行搜索时,常常查找的并非是一个简单的单词,很有可能是几个不同的关键字.这些关键字之间要么是紧密相联,成为一个精确的短 语,要么是可能在这几个关键字之间还插有其他无关的关键字.此时,用 ...
- JS 弹窗到右下角
<div id="msg_win" style="display: block; top: 490px; visibility: visible; opacity: ...
- Matlab中fsolve传递系数变量
比如AX= b,求解x,但是要找不同b下的x,100个b. fsolve(‘fun,[X0,b])这样是不行的,因为这样的话b也当成了变量,也会变. 两种方法 1.全局变量 global b;多个的话 ...
- GitHub和SourceTree入门教程
-->本教程适用于主流的开源网站github和bitbucket,个人认为sourceTree还是比较好用的git客户端,支持windows和mac os. -->soureceTree的 ...
- 帮助理解委托、匿名委托、Lambda表达式还有事件
写了一个小程序,能够很好的认识到这三个的用法 namespace Lambda { /// <summary> /// 实现根据指定运算形式 输出结果 /// </summary&g ...