_getpid
获取过程标识。
重要
此 API 不能在运行时的窗口执行的应用程序。有关更多信息,请参见 CRT 函数不支持与 /ZW。
int _getpid( void );
返回值
返回从系统获得的进程 ID。 无错误返回。
备注
_getpid 函数获取来自系统的进程 ID。 进程 ID 唯一标识调用过程。
要求
实例 |
必需的标头 |
---|---|
_getpid |
<process.h> |
有关更多兼容性信息,请参见中介绍的 兼容性。
示例
// crt_getpid.c
// This program uses _getpid to obtain
// the process ID and then prints the ID.
#include <stdio.h>
#include <process.h>
int main( void )
{
// If run from command line, shows different ID for
// command line than for operating system shell.
printf( "Process id: %d\n", _getpid() );
}
.NET Framework 等效项
System::Diagnostics::Process::Id