linux i64toa,Windows C++迁移Linux C++问题集锦

1)‘_wcsicmp’在此作用域中尚未声明

#ifdef WIN32

#define _tcsicmp        _wcsicmp

#else

#define _tcsicmp        wcscasecmp

#endif

2)_stricmp 在此作用域中尚未声明

#include

将_stricmp改成strcasecmp

3)atoi的wchar版本不存在,

#define _ttoi      _wtoi

改成使用

#define _tcstol    wcstol

4)_atoi64

改成

atoll

5)‘itoa’在此作用域中尚未声明 或者 ‘_itoa’在此作用域中尚未声明

改成

sprintf(buf,"%d",n);

6)‘ultoa’在此作用域中尚未声明 或者 ‘_ultoa’在此作用域中尚未声明

改成

sprintf(buf,"%ul",n);

7)‘ltoa’在此作用域中尚未声明 或者 ‘_ltoa’在此作用域中尚未声明

改成

sprintf(buf,"%l",n);

8)‘_i64toa’在此作用域中尚未声明

改成

sprintf(buf,"%lld",n);

9)‘_ui64toa’在此作用域中尚未声明

改成

sprintf(buf,"%llu",n);

10)htonl,htons,ntohl,ntohs 在此作用域中尚未声明

包含

#include

11)‘__int64’没有命名一个类型

将__int64 改为 long long

32位为ILP32(int,long,pointer为32位),64位采用LP64(long,pointer为64),其他不变

12)‘struct in_addr’没有名为‘S_un’的成员

in_addr ip;

ip.S_un.S_addr = "127.0.0.1";

将ip.S_un.S_addr改为ip.s_addr,如下:

ip.s_addr = "127.0.0.1";

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值