监视器和信号量之间的主要区别是什么?
当前回答
一句话回答:
监视器:一次只能控制一个线程在监视器中执行。(需要获取锁才能执行单线程)
信号量:保护共享资源的锁。(需要获取锁才能访问资源)
其他回答
下面的解释实际上解释了monitor的wait()和signal()与semaphore的P和V的区别。
监控器中对条件变量的wait()和signal()操作类似于对计数信号量的P和V操作。
A wait statement can block a process's execution, while a signal statement can cause another process to be unblocked. However, there are some differences between them. When a process executes a P operation, it does not necessarily block that process because the counting semaphore may be greater than zero. In contrast, when a wait statement is executed, it always blocks the process. When a task executes a V operation on a semaphore, it either unblocks a task waiting on that semaphore or increments the semaphore counter if there is no task to unlock. On the other hand, if a process executes a signal statement when there is no other process to unblock, there is no effect on the condition variable. Another difference between semaphores and monitors is that users awaken by a V operation can resume execution without delay. Contrarily, users awaken by a signal operation are restarted only when the monitor is unlocked. In addition, a monitor solution is more structured than the one with semaphores because the data and procedures are encapsulated in a single module and that the mutual exclusion is provided automatically by the implementation.
链接:此处可进一步阅读。希望能有所帮助。
当一个信号量被用来保护一个关键区域时,信号量和被保护的数据之间没有直接的关系。这就是为什么信号量可能分散在代码中,以及为什么很容易忘记调用wait或notify的部分原因,在这种情况下,结果分别是违反互斥或永久锁定资源。
相比之下,这些不好的事情都可能发生在显示器上。监控器直接访问数据(它封装数据),由于监控器操作是原子动作,因此不可能编写不调用入口协议就可以访问数据的代码。退出协议在监视器操作完成时自动调用。
监控器有一个内置的机制,可以在继续之前以条件变量的形式进行条件同步。如果条件不满足,则流程必须等待,直到收到条件更改的通知。当一个进程等待条件同步时,监视器实现会处理互斥问题,并允许另一个进程访问该监视器。
选自开放大学M362第三单元“互动过程”课程材料。
一句话回答:
监视器:一次只能控制一个线程在监视器中执行。(需要获取锁才能执行单线程)
信号量:保护共享资源的锁。(需要获取锁才能访问资源)
信号量允许多个线程(最多设置一个数目)访问一个共享对象。监视器允许对共享对象的互斥访问。
监控
信号量
信号量:
在并发系统中使用计数器或标志来控制对某些共享资源的访问,意味着使用信号量。
例子:
一个只允许50名乘客获得任何剧院/公共汽车/火车/游乐设施/教室的50个座位(共享资源)的柜台。只有在有人空出座位的情况下,才允许新乘客进入。 一个二进制标志,指示任何浴室的空闲/占用状态。 交通灯是旗帜的一个很好的例子。他们通过调节道路上车辆的通行来控制流量(共享资源)
标志只显示资源的当前状态,没有计数或资源上正在等待或运行的对象的任何其他信息。
监控:
Monitor通过与对对象感兴趣的线程通信来同步对对象的访问,要求它们获得访问权或等待某些条件变为真。
例子:
父亲可能会充当女儿的监工,只允许她一次和一个男人约会。 学校老师使用警棍,只允许一个孩子在课堂上发言。 最后一个技术问题是,同步Account对象上的事务(通过线程)以保持完整性。
推荐文章
- Thread start()和Runnable run()有什么区别
- 如何在Python中获取线程id ?
- 一个Java虚拟机可以支持多少线程?
- 到底什么是std::atomic?
- RxJava调度器用例
- 获取当前在Java中运行的所有线程的列表
- c#静态构造函数线程安全吗?
- CompletableFuture, Future和RxJava的Observable之间的区别
- 信号量和监视器——有什么不同?
- 同时运行多个asynctask——不可能?
- java.lang.Thread.interrupt()做什么?
- 在调用线程中捕获线程的异常?
- 如何超时线程
- Linux中的线程与进程
- join()在线程中的用途是什么?