码迷,mamicode.com
首页 > 系统相关 > 详细

Linux-C-GetUserName

时间:2021-01-11 11:16:12      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:hello   linux   mes   buffer   stream   int   编译   name   pac   

Linux-C-GetUserName

  1. code
//getUserName.c
#include <iostream>
#include <string>

using namespace std;

#ifdef linux
	#include <unistd.h>
	#include <pwd.h>
#endif
#ifdef _WIN32
	#include <Windows.h>
#endif

std::string getUserName()
{
#ifdef linux
	uid_t userid;
	struct passwd* pwd;
	userid = getuid();
	pwd = getpwuid(userid);
	return pwd->pw_name;
#elif _WIN32
	const int MAX_LEN = 100;
	char szBuffer[MAX_LEN];
	DWORD len = MAX_LEN;
	if(GetUserName(szBuffer,len))
	return szBuffer;
#endif
	return "";
}

int main()
{
	string name = getUserName();
	cout << "Hello World!" << name << endl;
	return 0;
}
  1. 编译运行
g++ getUserName.c
./a.out

Linux-C-GetUserName

标签:hello   linux   mes   buffer   stream   int   编译   name   pac   

原文地址:https://www.cnblogs.com/yongchao/p/14253142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!