讨论C语言中强制类型转换的用法
时间:2010-12-15 来源:KevinChin
uint16 adres = 0x00;
float adre;
adre = adre * 1000;
adres = (uint)adre;
如果是按上面的写法没有问题,但是如果这样写出就问题了,如下:
uint16 adres = 0x00;
float adre;
adres = (uint)dre * 1000;
还不明白为什么先把问题留在这里!
相关阅读 更多 +
时间:2010-12-15 来源:KevinChin
uint16 adres = 0x00;
float adre;
adre = adre * 1000;
adres = (uint)adre;
如果是按上面的写法没有问题,但是如果这样写出就问题了,如下:
uint16 adres = 0x00;
float adre;
adres = (uint)dre * 1000;
还不明白为什么先把问题留在这里!