[Constants]
説明
整数定数と同様に、浮動小数点定数はコードの可読性を高めるために使用されます。浮動小数点定数は、コンパイル時に式の評価結果の値と入れ替えられます。
n = 0.005; // 0.005 is a floating point constant
Floating point constants can also be expressed in a variety of scientific notation. ‘E’ and ‘e’ are both accepted as valid exponent indicators.
| floating-point constant | evaluates to: | also evaluates to: |
| 10.0 | 10 | |
| 2.34E5 | 2.34 * 10^5 | 234000 |
| 67e-12 | 67.0 * 10^-12 | .000000000067 |
Language Reference Home
86Duinoリファレンスのテキストは、Arduinoリファレンスを改変したもので、Creative Commons Attribution-ShareAlike 3.0ライセンスに基づいてライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。