一、定义
一个线程执行。有时也称为Critical Section(临界区)。
二、模式案例
案例:
假设有三个人,频繁地通过一扇门,规定每次只能通过一个人,当通过一个人时,程序会将通过的总人次加1,同时记录该次通过人的姓名和出生地。
门的定义:
public class Gate { private int counter = 0; private String name = "Nobody"; private String address = "Nowhere"; public void pass(String name,String address){ this.counter++; this.name = name; this.address = address; check(); } private void check() { if(name.charAt(0)!=address.charAt(0)){ System.out.println(" BROKEN "+toString()); } } public String toString(){ return "No."+counter+": "+name+", "+address; } }
讯享网
人的定义
讯享网public class UserThread extends Thread { private final Gate gate; private final String myname; private final String myaddress; public UserThread(Gate gate, String myname, String myaddress) { this.gate = gate; this.myname = myname; this.myaddress = myaddress; } public void run(){ System.out.println(myname+" BEGIN"); while(true){ gate.pass(myname,myaddress); } } }
测试类
public class Main { public static void main(String[] args) { System.out.println("Testing Gate,hit CTRL+C to exit."); Gate gate = new Gate(); new UserThread(gate,"Alice","Alaska").start(); new UserThread(gate,"Bobby","Brazil").start(); new UserThread(gate,"Chris","Canada").start(); } }
多次执行后发现可能出现以下结果:
分析:

可以看到,上述Gate类并非线程安全的,因为pass方法会被多个线程同时调用,且该方法中会修改Gate类字段的值。
优化:
讯享网public class Gate { private int counter = 0; private String name = "Nobody"; private String address = "Nowhere"; public synchronized void pass(String name,String address){ this.counter++; this.name = name; this.address = address; check(); } private void check() { if(name.charAt(0)!=address.charAt(0)){ System.out.println(" BROKEN "+toString()); } } public synchronized String toString(){ return "No."+counter+": "+name+", "+address; } }
三、模式讲解
角色:
Single Threaded Execution模式的角色如下:
- SharedResource(共享资源)参与者
SharedResource就是多线程会同时访问的资源类,该类通常具有2类方法:
①SafeMethod 从多个线程同时调用也不会发生问题的方法。
②UnsafeMethod 从多个线程同时调用会发生问题,这类方法需要加以防护,指定只能单线程访问区域,即临界区(critical section)。

借鉴学习自https://segmentfault.com/a/58507

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请联系我们,一经查实,本站将立刻删除。
如需转载请保留出处:https://51itzy.com/kjqy/59662.html