macro_rules! log {
(x:expr) => {
println!("{}", x);
};
($($x:expr),* ) => {
print!("\n");
$(print!("{} ",$x);) * // 这种实现不好;
};
}
println!("{}",$($x)),*); {} 如何重复?
1
共 2 条评论, 1 页
评论区
写评论thanks;
👇
johnmave126: 用
std::concat
比如这样: Rust Playground
用
std::concat
比如这样: Rust Playground