加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-15 06:56:14 所属栏目:百科 来源:网络整理
导读:我正在使用第一种方式,而我的新公司正在使用第二种方式. double x = 1.99; double y = 9.02D; 哪一个是正确的,为什么?并且如果两者都是正确的,那么如何使用这个在不同的情况下呢? 解决方法 从 msdn: By default,a real numeric literal on the right-hand
我正在使用第一种方式,而我的新公司正在使用第二种方式.
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;

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读