示例代码如下:
extern crate alloc;
let a: &'static str = "a";
let b: &'static str = "b";
let c: &'static str = "c";
let d: u64 = 123;
let e = alloc::format!("{}{}{}{}", a, b, c, d);
这里会报找不到:format!
1
共 2 条评论, 1 页
示例代码如下:
extern crate alloc;
let a: &'static str = "a";
let b: &'static str = "b";
let c: &'static str = "c";
let d: u64 = 123;
let e = alloc::format!("{}{}{}{}", a, b, c, d);
这里会报找不到:format!
评论区
写评论原文提到了no std, 不能用String相关的, 感觉只能按照u8数组自己处理了 对以下内容的回复:
使用
+
操作符,或者先初始化一个String再逐一push。