java 同步函数
2020-03-28 16:01:04来源:博客园 阅读 ()
java 同步函数
1.明确哪些代码是多线程代。
2.明确共享数据。
3.明确多线程运行代码中哪些语句是操作共享数据的。
synchronized作为修饰符放函数上。
同步函数使用的锁是:this
验证:开启两个线程,一个同步代码块,一个同步函数。
class Ticket implements Runnable { private int tick = 100; boolean flag = true; @Override public void run() { if (flag) { while (true) { synchronized (this) { if (tick > 0) { try { Thread.sleep(10); } catch (InterruptedException e) { } System.out.println(Thread.currentThread().getName() + "...code:" + tick--); } } } }else while (true) show(); } public synchronized void show() { if (tick > 0) { try { Thread.sleep(10); } catch (InterruptedException e) { } System.out.println(Thread.currentThread().getName() + "...show():" + tick--); } } } public class Demo { public static void main(String[] args) { Ticket t = new Ticket(); Thread t1 = new Thread(t); Thread t2 = new Thread(t); t1.start(); try { Thread.sleep(10); }catch (InterruptedException e){ } t.flag=false; t2.start(); } }
this才能保证程序正常运行。
this指向当前对象,但是如果是静态呢?静态的时候还没有创建对象,也就不存在this,那么静态函数中的锁是什么呢?字节码文件对象:类名.class
class Ticket implements Runnable { private static int tick = 100; boolean flag = true; @Override public void run() { if (flag) { while (true) { synchronized (Ticket.class) { if (tick > 0) { try { Thread.sleep(10); } catch (InterruptedException e) { } System.out.println(Thread.currentThread().getName() + "...code:" + tick--); } } } }else while (true) show(); } public static synchronized void show() { if (tick > 0) { try { Thread.sleep(10); } catch (InterruptedException e) { } System.out.println(Thread.currentThread().getName() + "...show():" + tick--); } } } public class Demo { public static void main(String[] args) { Ticket t = new Ticket(); Thread t1 = new Thread(t); Thread t2 = new Thread(t); t1.start(); try { Thread.sleep(10); }catch (InterruptedException e){ } t.flag=false; t2.start(); } }
原文链接:https://www.cnblogs.com/hongxiao2020/p/12589009.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash