为什么我不能在C#中为浮点变量分配1.2值?我在C和C中做了同样的事情,但它确实奏效了.
class Program { private readonly int a = 20; private readonly float b; public Program(float tmp) { b = tmp; } static void Main(string[] args) { Program obj1 = new Program(1.2); Console.Read(); } }
它给错误无法转移双倍浮动.
为什么不是1.2浮动值?
解决方法
1.2是双(8字节).
1.2f是一个浮点数(4个字节).
1.2f是一个浮点数(4个字节).