标签: c#
可能重复: List of .Net Numeric Type Initialization Identifiers
以下表达式中的“D”是什么意思?
Double total; ... total = 30D;
答案 0 :(得分:7)
这仅表示使用double值初始化变量。
以下是用于指定常量值类型的其他字符:
Decimal = M Float = F Long = L Unsigned Long = UL Unsigned Int = U
答案 1 :(得分:0)
'D'后缀用于将整数视为double。