摘要: The lock keyword marks a statement block as a critical section by obtaining the mutual-exclusion lock for a given object, executing a statement, and then releasing the lock. The following example includes a lock statement. class Account { decimal balance; private Object thisLock = new Object(); publ 阅读全文
posted @ 2011-08-31 16:19 sunnyboy 阅读(2423) 评论(0) 推荐(0) 编辑