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


Rust format用法及代码示例


本文简要介绍rust语言中 Function alloc::fmt::format 的用法。

用法

pub fn format(args: Arguments<'_>) -> String

format 函数采用 Arguments 结构并返回生成的格式化字符串。

Arguments 实例可以使用 format_args! 宏创建。

例子

基本用法:

use std::fmt;

let s = fmt::format(format_args!("Hello, {}!", "world"));
assert_eq!(s, "Hello, world!");

请注意,使用 format! 可能更可取。例子:

let s = format!("Hello, {}!", "world");
assert_eq!(s, "Hello, world!");

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function alloc::fmt::format。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。