本文簡要介紹rust語言中 f64.from_ne_bytes
的用法。
用法
pub fn from_ne_bytes(bytes: [u8; 8]) -> f64
從它的表示創建一個浮點值作為本地字節序中的字節數組。
由於使用了目標平台的本機字節順序,可移植代碼可能希望使用 from_be_bytes
或 from_le_bytes
,視情況而定。
例子
let value = f64::from_ne_bytes(if cfg!(target_endian = "big") {
[0x40, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
} else {
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, 0x40]
});
assert_eq!(value, 12.5);
相關用法
- Rust f64.from_be_bytes用法及代碼示例
- Rust f64.from_le_bytes用法及代碼示例
- Rust f64.from_bits用法及代碼示例
- Rust f64.fract用法及代碼示例
- Rust f64.floor用法及代碼示例
- Rust f64.signum用法及代碼示例
- Rust f64.sqrt用法及代碼示例
- Rust f64.is_finite用法及代碼示例
- Rust f64.round用法及代碼示例
- Rust f64.div_euclid用法及代碼示例
- Rust f64.hypot用法及代碼示例
- Rust f64.log用法及代碼示例
- Rust f64.asinh用法及代碼示例
- Rust f64.classify用法及代碼示例
- Rust f64.abs用法及代碼示例
- Rust f64.mul_add用法及代碼示例
- Rust f64.asin用法及代碼示例
- Rust f64.cbrt用法及代碼示例
- Rust f64.to_ne_bytes用法及代碼示例
- Rust f64.to_radians用法及代碼示例
- Rust f64.min用法及代碼示例
- Rust f64.atan用法及代碼示例
- Rust f64.is_nan用法及代碼示例
- Rust f64.max用法及代碼示例
- Rust f64.tanh用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 f64.from_ne_bytes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。