我不知道所谓的交换是什么意思,如果说转换的话可以使用下面的方法int a;float b;a = (int)b;b = (float) a;交换的话需要下面的方法:int x;float y;int tmp;tmp = x;x = (int)y;y = (float)tmp;
可以将整数转换为浮点数,如:int a = 0;double b = Convert.ToDouble(a);b就是整数a转换回来的浮点数。
楼主去看下装箱和拆箱吧!