- 论坛徽章:
- 0
|
调试遇到这么个问题,之后找到一个帖子中讲到了这个,但没有给出原因,有点想不通,基础不牢啊,那个能给解释下吗?谢谢!
========================================================================
不能将一个u_long类型表示的IP地址值直接强制转换成struct in_addr类型,下列程序段:
u_long ip = inet_addr("192.168.0.5");
char * strIP = inet_ntoa((in_addr)ip);
将会报错:
error C2440: 'type cast' : cannot convert from 'u_long' to 'in_addr'
No constructor could take the source type, or constructor overload resolution was ambiguous
正确的类型转换方式如下:
u_long ip = inet_addr("192.168.0.5");
char * strIP = inet_ntoa(*((in_addr *)&ip));
通过指针来实现inet_ntoa函数的调用。
|
|