当前位置: 首页 > news >正文

找人做网站大概多少钱威海市住房和城乡建设局网站

找人做网站大概多少钱,威海市住房和城乡建设局网站,青岛网站seo分析,做网站开发的过程一、学习ConditionVariable之前的复习 如果你不懂wait()、notify()怎么使用#xff0c;最好先复习下我之前的这篇博客#xff0c;怎么使用wait()、notify()实现生产者和消费者的关系 java之wait()、notify()实现非阻塞的生产者和消费者 二、看下ConditionVariable源代码实现…一、学习ConditionVariable之前的复习 如果你不懂wait()、notify()怎么使用最好先复习下我之前的这篇博客怎么使用wait()、notify()实现生产者和消费者的关系 java之wait()、notify()实现非阻塞的生产者和消费者 二、看下ConditionVariable源代码实现 package android.os;/*** Class that implements the condition variable locking paradigm.** p* This differs from the built-in java.lang.Object wait() and notify()* in that this class contains the condition to wait on itself. That means* open(), close() and block() are sticky. If open() is called before block(),* block() will not block, and instead return immediately.** p* This class uses itself as the object to wait on, so if you wait()* or notify() on a ConditionVariable, the results are undefined.*/ public class ConditionVariable {private volatile boolean mCondition;/*** Create the ConditionVariable in the default closed state.*/public ConditionVariable(){mCondition false;}/*** Create the ConditionVariable with the given state.* * p* Pass true for opened and false for closed.*/public ConditionVariable(boolean state){mCondition state;}/*** Open the condition, and release all threads that are blocked.** p* Any threads that later approach block() will not block unless close()* is called.*/public void open(){synchronized (this) {boolean old mCondition;mCondition true;if (!old) {this.notifyAll();}}}/*** Reset the condition to the closed state.** p* Any threads that call block() will block until someone calls open.*/public void close(){synchronized (this) {mCondition false;}}/*** Block the current thread until the condition is opened.** p* If the condition is already opened, return immediately.*/public void block(){synchronized (this) {while (!mCondition) {try {this.wait();}catch (InterruptedException e) {}}}}/*** Block the current thread until the condition is opened or until* timeout milliseconds have passed.** p* If the condition is already opened, return immediately.** param timeout the maximum time to wait in milliseconds.** return true if the condition was opened, false if the call returns* because of the timeout.*/public boolean block(long timeout){// Object.wait(0) means wait forever, to mimic this, we just// call the other block() method in that case. It simplifies// this code for the common case.if (timeout ! 0) {synchronized (this) {long now System.currentTimeMillis();long end now timeout;while (!mCondition now end) {try {this.wait(end-now);}catch (InterruptedException e) {}now System.currentTimeMillis();}return mCondition;}} else {this.block();return true;}} }三、我们分析怎么使用 比如有多个线程需要执行同样的代码的时候我们一般希望当一个线程执行到这里之后后面的线程在后面排队然后等之前的线程执行完了再让这个线程执行我们一般用synchronized实现但是这里我们也可以用ConditionVariable实现从源码可以看到我们初始化可以传递一个boolean类型的参数进去我们可以传递true进去 public ConditionVariable(boolean state){mCondition state;} 然后你看下ConditionVariable类里面这个方法 public void block(){synchronized (this) {while (!mCondition) {try {this.wait();}catch (InterruptedException e) {}}}} 如果第一次初始化的时候mCondition是true,那么第一次调用这里就不会走到wait函数然后我们应该需要一个开关让mCondition变成false,让第二个线程进来的时候我们应该让线程执行wait()方法阻塞在这里这不看下ConditionVariable类里面这个函数 public void close(){synchronized (this) {mCondition false;}} 这不恰好是我们需要的我们可以马上调用这个函数close(),然后让程序执行我们想执行的代码最后要记得调用open方法如下 public void open(){synchronized (this) {boolean old mCondition;mCondition true;if (!old) {this.notifyAll();}}} 因为这里调用了notifyAll方法把之前需要等待的线程呼唤醒 所以我们使用可以这样使用 1、初始化 ConditionVariable mLock new ConditionVariable(true); 2、同步的地方这样使用 mLock.block();mLock.close();/**你的代码**/mLock.open(); 四、测试代码分析 我先给出一个原始Demo public class MainActivity extends ActionBarActivity {public static final String TAG ConditionVariable_Test;Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);for (int i 0; i 10; i) {new Mythread( i).start();}}public int num 5;class Mythread extends Thread {String name;public Mythread(String name) {this.name name;}Overridepublic void run() {while (true) {try {Thread.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}num--;if (num 0)Log.i(TAG, thread name is: name num is: num);elsebreak;}}} } 运行的结果是这样的 ConditionVariable_Test I thread name is:0 num is:4I thread name is:1 num is:3I thread name is:2 num is:2I thread name is:3 num is:1I thread name is:4 num is:0很明显不是我们想要的结果因为我想一个线程进来了需要等到执行完了才让另外一个线程才能进来 我们用ConditionVariable来实现下 package com.example.conditionvariable;import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock;import android.os.Bundle; import android.os.ConditionVariable; import android.support.v7.app.ActionBarActivity; import android.util.Log;public class MainActivity extends ActionBarActivity {public static final String TAG ConditionVariable_Test;Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);mCondition new ConditionVariable(true);for (int i 0; i 10; i) {new Mythread( i).start();}}public int num 5;class Mythread extends Thread {String name;public Mythread(String name) {this.name name;}Overridepublic void run() {mCondition.block();mCondition.close();while (true) {try {Thread.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}num--;if (num 0)Log.i(TAG, thread name is: name num is: num);elsebreak;}mCondition.open();}} }运行的结果如下 onditionVariable_Test I thread name is:0 num is:4I thread name is:0 num is:3I thread name is:0 num is:2I thread name is:0 num is:1I thread name is:0 num is:0很明显这是我想要的效果还有其它办法吗当然有 我们还可以使用ReentrantLock重入锁代码修改如下 public class MainActivity extends ActionBarActivity {public static final String TAG ConditionVariable_Test;private Lock lock new ReentrantLock();Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);for (int i 0; i 10; i) {new Mythread( i).start();}}public int num 5;class Mythread extends Thread {String name;public Mythread(String name) {this.name name;}Overridepublic void run() {lock.lock();while (true) {try {Thread.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}num--;if (num 0)Log.i(TAG, thread name is: name num is: num);elsebreak;}lock.unlock();}} } 运行的结果如下 onditionVariable_Test I thread name is:0 num is:4I thread name is:0 num is:3I thread name is:0 num is:2I thread name is:0 num is:1I thread name is:0 num is:0很明显这是我想要的效果还有其它办法吗当然有那就是用synchronized同步块代码改成如下 package com.example.conditionvariable;import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock;import android.os.Bundle; import android.os.ConditionVariable; import android.support.v7.app.ActionBarActivity; import android.util.Log;public class MainActivity extends ActionBarActivity {public static final String TAG ConditionVariable_Test;Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);for (int i 0; i 10; i) {new Mythread( i).start();}}public int num 5;class Mythread extends Thread {String name;public Mythread(String name) {this.name name;}Overridepublic void run() {synchronized (MainActivity.class) {while (true) {try {Thread.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}num--;if (num 0)Log.i(TAG, thread name is: name num is: num);elsebreak;}}}} }运行的结果如下 onditionVariable_Test I thread name is:0 num is:4I thread name is:0 num is:3I thread name is:0 num is:2I thread name is:0 num is:1I thread name is:0 num is:0很明显这是我想要的效果 五、总结 在Android开发里面我们一般实现线程通过可以用ConditionVariable、ReentrantLock(重入锁)、synchronized、阻塞队列(ArrayBlockingQueue、LinkedBlockingQueue)    put(E e) : 在队尾添加一个元素如果队列满则阻塞    size() : 返回队列中的元素个数    take() : 移除并返回队头元素如果队列空则阻塞
http://www.pierceye.com/news/974908/

相关文章:

  • 营销优化型网站怎么做手机app网页制作
  • 上海网站建设服wordpress友情链接排序
  • 沈阳市和平区网站建设编程课适合多大孩子学
  • 东阳网站优化懒人图库
  • 马关县网站建设专注营销型网站建设
  • 微信公众号公众平台太原seo关键词优化
  • 沈阳网站建设方案二级网站怎样被百度收录
  • 厦门数字引擎 怎么打不开网站youku网站开发技术
  • 中小企业网站建设论文郑州网站服务公司
  • 工信部网站备案验证码文化传媒网站封面
  • 境外做网站网站百度代运营
  • 南京学校网站建设策划手机网站默认全屏
  • 东莞公司网站策划万网买网站
  • 建筑网站视频大全做外汇网站卖判刑多少年
  • 手机网站菜单网页怎么做东莞网站优化方案
  • 公众号免费素材网站wordpress无法开始安装
  • 建设银行互联网网站首页网站备案 视频
  • 免费优化网站建设做app和网站哪个比较好用
  • 韩国最牛的设计网站大全网站设计的尺寸
  • 一家专门做特卖的网站类似非小号的网站怎么做
  • 怎么建一个网站出口外贸交易平台
  • iapp用网站做软件代码徐州网络推广公司排名
  • 设计之路 网站wordpress自定义字段火车头
  • 用什么服务器做盗版小说网站吗邓州十九张麻将微信群app开发公司
  • 高端网站设计找哪个公司WordPress 移动文件夹
  • 做网站的资料新媒体网站建设十大的经典成功案例
  • 西安移动网站建设丹东做网站的
  • 石家庄网站建设优化建湖做网站哪家最好
  • 外贸电商做俄罗斯市场网站电子商务网站建设的步骤一般为(
  • 济南网站建设联 系小七太仓网页制作招聘