摘要: 原文:http://www.albahari.com/threading/part5.aspxPART 5: PARALLEL PROGRAMMING(占位) 阅读全文
posted @ 2012-06-30 14:36 xcf007 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.albahari.com/threading/part4.aspxPART 4: ADVANCED THREADING非阻塞同步Earlier, we said that the need for synchronization arises even in the simple case ofassigning or incrementing a field. Althoughlockingcan always satisfy this need, a contended lock means that a thread mustblock, suffering 阅读全文
posted @ 2012-06-30 14:28 xcf007 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 原文http://www.albahari.com/threading/part3.aspxPART 3: USING THREADS基于事件的异步模式(占位) 阅读全文
posted @ 2012-06-30 14:26 xcf007 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.albahari.com/threading/part2.aspxPART 2: BASIC SYNCHRONIZATION同步之本质So far, we’ve described how to start a task on a thread, configure a thread, and pass data in both directions. We’ve also described how local variables are private to a thread and how references can be shared among thre 阅读全文
posted @ 2012-06-30 14:24 xcf007 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.albahari.com/threading/PART 1: GETTING STARTED概念与简介C# supports parallel execution of code through multithreading. A thread is an independent execution path, able to run simultaneously with other threads.C#通过多线程来支持代码的并行执行。一个线程是一个独立的执行路径,可以与其它线程同时运行。A C#clientprogram (Console, WPF, or Wi 阅读全文
posted @ 2012-06-30 14:18 xcf007 阅读(326) 评论(0) 推荐(0) 编辑
摘要: The Chromium projects include Chromium and Chromium OS, the open-source projects behind theGoogle Chromebrowser and Google Chrome OS, respectively. This site houses the documentation and code related to the Chromium projects and is intended for developers interested in learning about and contributin 阅读全文
posted @ 2012-06-30 13:57 xcf007 阅读(520) 评论(0) 推荐(0) 编辑