码迷,mamicode.com
首页 >  
搜索关键字:multithreading    ( 111个结果
iOS线程编程指南
原英文网址为: https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Multithreading/ThreadSafety/ThreadSafety.html 同步 在应用程序中的多个线程的存在开辟了潜在的问题,关于安全访问到资源从多个执行线程。两个线程修改相同的资源可能会相互干扰,以意想不...
分类:移动开发   时间:2015-03-05 14:54:51    阅读次数:525
IOS NSRunLoop
原英文网址是:https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Multithreading/RunLoopManagement/RunLoopManagement.html 运行循环 运行的循环是与线程相关联的基本基础结构的一部分。运行循环是您使用调度工作和协调收到传入的事件的事件处理循环。运...
分类:移动开发   时间:2015-03-05 14:53:22    阅读次数:268
Multithreading For Performance
[This post is by Gilles Debunne, an engineer in the Android group who loves to get multitasked. — Tim Bray]A good practice in creating responsive appl...
分类:其他好文   时间:2015-01-28 14:34:20    阅读次数:180
multithreading - Reader/Writer Locks in C++
You Only Need To Note This: only 1single thread can acquire an upgrade_lock at one time.others are very straightforward.96vote1800 INFORMATION is more...
分类:编程语言   时间:2015-01-20 20:01:12    阅读次数:183
ios - run loop (port -based)
苹果公司的ios文档(https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Multithreading/RunLoopManagement/RunLoopManagement.html)介绍里面,port-based作为线程之间的通信花了很长篇幅来介绍。但是有趣的是,当我尝试去使用machport的时候,xc...
分类:移动开发   时间:2014-12-27 23:12:12    阅读次数:234
ios - run loop (timer)
在ios开发多线程程序的时候,往往会碰到run loop。 对于run loop, 苹果开发网站上有非常详细的说明,https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Multithreading/RunLoopManagement/RunLoopManagement.html 强烈建议啃下来,不要怕英文...
分类:移动开发   时间:2014-12-27 19:01:34    阅读次数:216
python多线程(转)
转自:http://www.w3cschool.cc/python/python-multithreading.html 多线程类似于同时执行多个不同程序,多线程运行有如下优点: 使用线程可以把占据长时间的程序中的任务放到后台去处理。 用户界面可以更加吸引人,这样比如用户...
分类:编程语言   时间:2014-12-20 16:53:15    阅读次数:298
网友的百度移动云可穿戴部门的面试经历
1面Objective C runtime library:Objective C的对象模型,block的底层实现结构,消息发送,消息转发,这些都需要背后C一层的描述,内存管理。Core Data:中多线程中处理大量数据同步时的操作。Multithreading:什么时候处理多线程,几种方式,优缺点...
分类:移动开发   时间:2014-12-08 19:27:57    阅读次数:217
线程同步和异步
多线程(英语:multithreading),是指从软件或者硬件上实现多个线程并发执行的技术。具有多线程能力的计算机因有硬件支持而能够在同一时间执行多于一个线程,进而提升整体处理性能。多线程是为了同步完成多项任务,不是为了提高运行效率,而是为了提高资源使用效率来提高系统的效率。线程是在同一时间需要完...
分类:编程语言   时间:2014-12-01 15:54:38    阅读次数:191
浅谈 关于ARC循环引用得问题
这段时间在研究关于ARC得循环引用导致变量不能释放,在此先介绍一本书英文书:《Pro Multithreading and Memory Management for iOS and OS X with ARC, Grand Central Dispatch, and Blocks》(《iOS与OS...
分类:其他好文   时间:2014-11-18 13:08:57    阅读次数:176
111条   上一页 1 ... 7 8 9 10 11 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!