在c#中表示double的正确方法是什么?

前端之家收集整理的这篇文章主要介绍了在c#中表示double的正确方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用第一种方式,而我的新公司正在使用第二种方式.
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: Copy

double x = 3D;

所以双倍x = 1.99没有区别;双y = 9.02D;

原文链接:https://www.f2er.com/csharp/94147.html

猜你在找的C#相关文章