欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++ 获取当前进程pid

程序员文章站 2022-03-22 21:35:16
...
#include<iostream>
#include<unistd.h>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
int main()
{
 cout<<"pid = "<<getpid()<<endl;
// system("pause");  windows 下使用
 getchar();// linux经常使用, 让程序暂停下来
 return 0;
}

 

相关标签: 基础 c++基础