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


Rust char.from_digit用法及代碼示例


本文簡要介紹rust語言中 char.from_digit 的用法。

用法

pub fn from_digit(num: u32, radix: u32) -> Option<char>

將給定基數中的數字轉換為 char

此處的'radix' 有時也稱為'base'。基數為 2 表示二進製數,基數為 10 表示十進製數,基數為 16 表示十六進製數,以給出一些常用值。支持任意基數。

如果輸入不是給定基數中的數字,from_digit() 將返回 None

Panics

如果給定大於 36 的基數,則會出現Panics。

例子

基本用法:

use std::char;

let c = char::from_digit(4, 10);

assert_eq!(Some('4'), c);

// Decimal 11 is a single digit in base 16
let c = char::from_digit(11, 16);

assert_eq!(Some('b'), c);

當輸入不是數字時返回None

use std::char;

let c = char::from_digit(20, 10);

assert_eq!(None, c);

傳遞一個大基數,引起Panics:

use std::char;

// this panics
let _c = char::from_digit(1, 37);

相關用法


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