我正在将日志语句写入一个文件,并希望在每一行前加上生成该语句的线程ID。
GetCurrentThreadID函数似乎总是返回一个getcurrentthreadid返回一个可能包含大数字的dword。
谢谢。

最佳答案

GetCurrentThreadID的msdn页面显示:

the thread identifier uniquely identifies the thread throughout the system.

因此线程id在整个系统中是唯一的,而不仅仅是您的进程,在这个进程中,很有可能在某个时候返回一个大于4位十进制数的值。

09-05 22:50