當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Binary用法及代碼示例


本文簡要介紹rust語言中 Trait std::fmt::Binary 的用法。

用法

pub trait Binary {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}

b 格式化。

Binary 特征應將其輸出格式化為二進製數字。

對於原始有符號整數( i8 i128 isize ),負值被格式化為二進製補碼表示。

備用標誌 # 在輸出前添加 0b

有關格式化程序的更多信息,請參閱the module-level documentation

例子

i32 的基本用法:

let x = 42; // 42 is '101010' in binary

assert_eq!(format!("{:b}", x), "101010");
assert_eq!(format!("{:#b}", x), "0b101010");

assert_eq!(format!("{:b}", -16), "11111111111111111111111111110000");

在類型上實現Binary

use std::fmt;

struct Length(i32);

impl fmt::Binary for Length {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let val = self.0;

        fmt::Binary::fmt(&val, f) // delegate to i32's implementation
    }
}

let l = Length(107);

assert_eq!(format!("l as binary is: {:b}", l), "l as binary is: 1101011");

assert_eq!(
    format!("l as binary is: {:#032b}", l),
    "l as binary is: 0b000000000000000000000001101011"
);

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Trait std::fmt::Binary。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。