摘要:
1.HahsMap https://rustwiki.org/zh-CN/std/collections/struct.HashMap.html 跟着文档,查看一下hashmap的方法,调试,输出一下,就能学会使用了。 use std::collections::HashMap; use std:: 阅读全文
摘要:
1.trait的基本使用 最基本的trait struct Person { name:String, id:i32, } struct Teacher { name:String, id:i32, } trait sayHello { fn say_hello(&self) { println!( 阅读全文
摘要:
由C++指针和引用引发的思考 #include<iostream> using namespace std; void c1(int a) { a = 6; } void c2(int* a) { *a = 7; } void c3(int& a) { a = 8; } int main() { i 阅读全文
摘要:
use std::collections::HashMap; use std::sync::OnceLock; const B64: [char; 65] = [ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N' 阅读全文