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


Rust f64.from_ne_bytes用法及代码示例


本文简要介绍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-lang.org大神的英文原创作品 f64.from_ne_bytes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。