現在のメソッドが実行されている現在のスレッドIDを出力する方法はありますか?
(objective-cください)
NSLog(@"%@", [NSThread currentThread]);
#include <pthread.h>
...
mach_port_t machTID = pthread_mach_thread_np(pthread_self());
NSLog(@"current thread: %x", machTID);
In Swift
print("Current thread \(Thread.current)")
In Swift
print("Current thread \(NSThread.currentThread())")
In Swift4
print( "\(Thread.current)")