我正在使用第一种方式,而我的新公司正在使用第二种方式.
double x = 1.99; double y = 9.02D;
哪一个是正确的,为什么?并且如果两者都是正确的,那么如何使用这个在不同的情况下呢?
解决方法
从
msdn:
By default,a real numeric literal on
the right-hand side of the assignment
operator is treated as double.
However,if you want an integer number
to be treated as double,use the
suffix d or D,for example: Copydouble x = 3D;
所以双倍x = 1.99没有区别;双y = 9.02D;