线程授课(Thread Teaching).doc

  1. 1、本文档共19页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
线程授课(Thread Teaching)

线程授课(Thread Teaching) 1. performance optimization: Try to use the parameter to the //1. method, because the class is a pointer, memory allocation is reasonable, but also can avoid duplication of type value. //2. reduce the return point of each function, generally only a OK. //3. if a function parameter is too much, you can use the class to replace. //4. control class size, meaning that the work is only single responsibility. 1. multi thread Value, value, resources, suspension and cancellation of thread synchronization operation //1. multithreading to local variables, method parameters, return values are safe, because these variables reside on the stack. 1. how to use the object is thread safe? 1. important synchronization code is: / / lock 2. using the object can not be changed / like new, create a new object 3. the use of thread safe wrapper / is bullshit, with a kind of packaging, another class, and then directly locked packaging in class. Boring 1. synchronous lock: 1.ReaderWriterLock read and write locks for multiple users read / write operation of the single user scenario ReaderWriterLock RWL = new (ReaderWriterLock); Rwl.AcquireReaderLock (1000); / / read operation for the lock, did not get a second. Give up / / working code (rwl.ReleaseReaderLock); / / read lock release //---------------------------------------------------------------------- Rwl.AcquireWriterLock (1000); / / write lock application / / working code (rwl.releaseWriterLock); / / write lock release 2. distinguish asynchronous and multi-threaded application scenarios: 1. from the start asynchronous operation of IO DMA mode, DMA direct memory access is not the direct exchange mode through the CPU memory data, almost no loss of CPU resources. In the hardware, hard disk, network card, sound card, graphics card has DMA function, asynchronous programming model is to make full use of the hardware DMA function to release the pressure of CPU. 2. computing intensive work, using multiple threads. 3.IO inten

您可能关注的文档

文档评论(0)

jgx3536 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:6111134150000003

1亿VIP精品文档

相关文档