1、在 Linux 实现 Win32 API 之 GetTickCount 函数
为了将 Windows 中的 GetTickCount API 函数移植到 Linux,可以使用如下的代码:
long GetTickCount()
{
tms tm;
return times(&tm);
}
2、Windows 和 Linux 系统关于 itoa 的移植问题
大家知道,在将 Windows 的 STL 代码移植到 Linux 系统时,由于 Linux 系统中 STL 没有实现默认的itoa 函数,因此 itoa 在 Linux 中无法正常工作。要是在 GCC 命令行禁用 STL 的话,那么代码里就无法使用 STL,从而丢失可移植性。这里给出一个 简单可行的解决 方法,以便你碰到这种情况时顺利进行从 Windows 到 Linux 的移植:
#if defined(__linux__) #define _itoa itoa char* itoa(int value, char* str, int radix) { int rem = 0; int pos = 0; char ch = ''!'' ; do { rem = value % radix ; value /= radix; if ( 16 == radix ) { if( rem >= 10 && rem <= 15 ) { switch( rem ) { case 10: ch = ''a'' ; break; case 11: ch =''b'' ; break; case 12: ch = ''c'' ; break; case 13: ch =''d'' ; break; case 14: ch = ''e'' ; break; case 15: ch =''f'' ; break; } } } if( ''!'' == ch ) { str[pos++] = (char) ( rem + 0x30 ); } else { str[pos++] = ch ; } }while( value != 0 ); str[pos] = ''\0'' ; return strrev(str); } #endif
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索linux
, windows
, 移植
, 函数
, 代码
, 可移植
, itoa
, linux 移植
, itoa c++
, guirtems移植linux
, itoa()
itoa函数
windows代码移植linux、windows程序移植linux、windows移植到linux、linux移植windows、qt linux移植windows,以便于您获取更多的相关知识。