
Thread Synchronization
iteye_16226
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Thread Synchronization
One of the strengths of the Java programming language is its support for multithreading at the language level. Much of this support centers on synchronization: coordinating activities and data access ...原创 2011-03-01 15:04:00 · 158 阅读 · 0 评论 -
Object Locking
Object Locking As mentioned in earlier chapters, some of the Java virtual machine's runtime data areas are shared by all threads, others are private to individual threads. Because the heap and method...原创 2011-03-01 15:04:45 · 158 阅读 · 0 评论 -
Synchronization Support in the Instruction Set
Synchronization Support in the Instruction Set As mentioned earlier, the language provides two built-in ways to identify monitor regions in your programs: synchronized statements and synchronized met...原创 2011-03-01 15:06:16 · 132 阅读 · 0 评论 -
Coordination Support in Class Object
Coordination Support in Class Object Class Object declares five methods that enable programmers to access the Java virtual machine's support for the coordination aspect of synchronization. These meth...原创 2011-03-01 15:07:00 · 140 阅读 · 0 评论