第一阶段总结
感谢活动主办方提供的宝贵平台和资源!
希望自己至少能坚持做完二阶段。
RUST
学习资料:
rustlings 110题 https://github.com/LearningOS/rust-rustlings-2024-spring-zhouyecs(已完成)
rust语言圣经 https://course.rs
rust练习实践 https://practice-zh.course.rs/
rust by example https://doc.rust-lang.org/rust-by-example/
半小时学习rust https://fasterthanli.me/articles/a-half-hour-to-learn-rust(已完成)
rust algorithm club https://rust-algo.club/(已完成)
《rust实战》https://www.amazon.com/Rust-Action-TS-McNamara/dp/1617294551
(rust资料太多,慢慢学……)
RISC-V
之前学习过《计算机组成与设计(RISC-V版)》,所以这次只是简单地看了一下PPT for RISC-V特权指令级架构,打算后面有时间学习RISC-V手册:一本开源指令集的指南和Berkeley CS61C: Great Ideas in Computer Architecture (Machine Structures)。
rustlings 难点记录
rustlings 110题 https://github.com/LearningOS/rust-rustlings-2024-spring-zhouyecs
参考资料
- The Book - The most comprehensive resource for learning Rust, but a bit theoretical sometimes. You will be using this along with Rustlings!
- Rust By Example - Learn Rust by solving little exercises! It’s almost like rustlings
, but online
做题的时候忘记边做边记录了,所以选了些难点记下来。
引用
这里和C/C++类似,引用使用 &
,解引用使用 *
。
1 | fn main() { |
字符串
Rust中,str
和String
是两种不同的数据类型,特别容易搞混,str
是字符串切片类型,是一个不可变引用,而String
是字符串类型,是一个可变的字符串。
1 | fn main() { |
还有更多就没写了,还是得多练练。