如何在Rust中打印变量的类型及类型转换实践
摘要:
#![feature(core_intrinsics)] fn print_type_of<T>(_: T) { println!("{}", std::intrinsics::type_name::<T>() ); } fn main() { print_type_of(3); // prints 阅读全文
posted @ 2021-08-19 18:57 pu369com 阅读(851) 评论(0) 推荐(0) 编辑