当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing double用法及代码示例


Processing, double用法介绍。

用法

  • double var
  • double var = value

参数

  • var 引用浮点数的变量名
  • value 任何浮点值

说明

大于可以存储在 float 中的浮点数的数据类型。 float 是一个 32 位值,可大至 3.40282347E+38 和低至 -3.40282347E+38。 double 可以与浮点数类似地使用,但可以具有更大的量级,因为它是一个 64 位数字。处理函数不使用这种数据类型,因此当它们在该语言中工作时,您通常必须在传递给函数之前使用(float) 语法转换为float

例子

double a;             // Declare variable 'a' of type double
a = 1.5387D;          // Assign 'a' the value 1.5387
double b = -2.984D;   // Declare variable 'b' and assign it the value -2.984
double c = a + b;     // Declare variable 'c' and assign it the sum of 'a' and 'b'
float f = (float)c;   // Converts the value of 'c' from a double to a float

有关的

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 double。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。