현재 메서드 호출의 스레드 ID를 가져오는 중 현재 메서드가 실행 중인 현재 스레드 ID를 출력할 수 있는 방법이 있습니까? (209-c로 부탁합니다)NSLog(@"%@", [NSThread currentThread]); 인 스위프트 5 print("Current thread \(Thread.current)") #include ... mach_port_t machTID = pthread_mach_thread_np(pthread_self()); NSLog(@"current thread: %x", machTID); 인 스위프트 print("Current thread \(NSThread.currentThread())") 인 스위프트4 print("\(Thread.current)") 다음과 같은 것을 해킹할 수..