本文簡要介紹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 BinaryHeap.capacity用法及代碼示例
- Rust BinaryHeap.push用法及代碼示例
- Rust BinaryHeap.clear用法及代碼示例
- Rust BinaryHeap.new用法及代碼示例
- Rust BinaryHeap.retain用法及代碼示例
- Rust BinaryHeap用法及代碼示例
- Rust BinaryHeap.pop用法及代碼示例
- Rust BinaryHeap.peek_mut用法及代碼示例
- Rust BinaryHeap.reserve_exact用法及代碼示例
- Rust BinaryHeap.as_slice用法及代碼示例
- Rust BinaryHeap.peek用法及代碼示例
- Rust BinaryHeap.drain用法及代碼示例
- Rust BinaryHeap.reserve用法及代碼示例
- Rust BinaryHeap.len用法及代碼示例
- Rust BinaryHeap.append用法及代碼示例
- Rust BinaryHeap.drain_sorted用法及代碼示例
- Rust BinaryHeap.iter用法及代碼示例
- Rust BinaryHeap.shrink_to_fit用法及代碼示例
- Rust BinaryHeap.into_iter_sorted用法及代碼示例
- Rust BinaryHeap.into_sorted_vec用法及代碼示例
- Rust BinaryHeap.with_capacity用法及代碼示例
- Rust BinaryHeap.into_vec用法及代碼示例
- Rust BinaryHeap.shrink_to用法及代碼示例
- Rust BinaryHeap.is_empty用法及代碼示例
- Rust BitXor用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Trait std::fmt::Binary。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。