摘要: use std::collections::HashMap; fn print_type_of<T>(_: &T) { print!("Type is : {} \n", std::any::type_name::<T>()); } // vector 只能储存相同类型的值,这很不方便使用。Rust 阅读全文
posted @ 2022-04-24 01:10 DarkH 阅读(30) 评论(0) 推荐(0) 编辑