本文簡要介紹rust語言中 f64.to_ne_bytes
的用法。
用法
pub fn to_ne_bytes(self) -> [u8; 8]
將此浮點數的內存表示形式返回為本機字節順序的字節數組。
由於使用了目標平台的本機字節順序,因此可移植代碼應酌情使用 to_be_bytes
或 to_le_bytes
。
例子
let bytes = 12.5f64.to_ne_bytes();
assert_eq!(
bytes,
if cfg!(target_endian = "big") {
[0x40, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
} else {
[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, 0x40]
}
);
相關用法
- Rust f64.to_radians用法及代碼示例
- Rust f64.to_degrees用法及代碼示例
- Rust f64.to_bits用法及代碼示例
- Rust f64.to_be_bytes用法及代碼示例
- Rust f64.to_le_bytes用法及代碼示例
- Rust f64.to_int_unchecked用法及代碼示例
- Rust f64.total_cmp用法及代碼示例
- Rust f64.tanh用法及代碼示例
- Rust f64.trunc用法及代碼示例
- Rust f64.tan用法及代碼示例
- Rust f64.signum用法及代碼示例
- Rust f64.sqrt用法及代碼示例
- Rust f64.is_finite用法及代碼示例
- Rust f64.round用法及代碼示例
- Rust f64.div_euclid用法及代碼示例
- Rust f64.hypot用法及代碼示例
- Rust f64.floor用法及代碼示例
- Rust f64.log用法及代碼示例
- Rust f64.asinh用法及代碼示例
- Rust f64.classify用法及代碼示例
- Rust f64.abs用法及代碼示例
- Rust f64.mul_add用法及代碼示例
- Rust f64.asin用法及代碼示例
- Rust f64.cbrt用法及代碼示例
- Rust f64.from_ne_bytes用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 f64.to_ne_bytes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。