开发者

pthread vs NSThread: which is faster

开发者 https://www.devze.com 2022-12-16 16:23 出处:网络
In Cocoa, is NSThread faster than pthread? is are any performance gain? is it negli开发者_如何学Pythongible to ignore?I have no data to back this up, but I\'m going to go out on a limb and say \"they\

In Cocoa, is NSThread faster than pthread? is are any performance gain? is it negli开发者_如何学Pythongible to ignore?


I have no data to back this up, but I'm going to go out on a limb and say "they're equivalent". NSThread is almost certainly wrapper around pthread (is there really any other way to create a system thread?), so any overhead of using NSThread versus pthread would be that associated with creating a new object and then destroying it. Once the thread itself starts, it should be pretty much identical in terms of performance.

I think the real question here is: "Why do you need to know?" Have you come up against some situation where spawning NSThreads seems to be detrimental to your performance? (I could see this being an issue if you're spawning hundreds of threads, but in that case, the hundreds of threads are most likely your problem, and not the NSThread objects)

Unless you have proof that the creation of an NSThread object is a bottleneck in your application, I would definitely go with the "negligible to ignore" option.


pthreads actually have slightly less overhead, but I can't imagine it will make any difference in practice. NSThread uses pthreads underneath. The actual execution speed of the code in your thread will be the same for both.


Under iPhone SDK, NSThread uses pthread as an actual thread. Frankly, they're equivalent.

However, we can access "deep" settings via pthread APIs if we use pthread API. For example, scheduling way, stack size, detached or not, etc. These API are hidden by NSThread capsule.

Therefore, under some conditions, pthreads win.


I would also guess that any "overhead" or "instantiation difference" you pay as an extra for NSThread, would be evened by the extra cycles and calls you will eventually need to perform, to configure your pthread correctly, using pthread APIs.

I believe the NSThread is nothing but convenience wrapper that saves some coding in Cocoa/Cocoa-touch applications that want to be multithreaded.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号