gpt4 book ai didi

rust - 《 Bust in Rust》的打印值(value)

转载 作者:行者123 更新时间:2023-12-03 11:44:18 26 4
gpt4 key购买 nike

如何在Rust中打印 bool 值?

let mut myFalseBool = false;
let mut myTrueBool = true;
//how do I print out the value of either bool?

最佳答案

用相同的方式打印任何值:

let foobar = true;
println!("{}", foobar);
dbg!(foobar);
输出:
true
[src/main.rs:4] foobar = true

关于rust - 《 Bust in Rust》的打印值(value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65056996/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com