TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Is life too short to fight Rust's borrow checker?

2 pointsby cjgabout 3 years ago

2 comments

db48xabout 3 years ago
Most programs should be done in a garbage–collected language. Let the runtime deal with whatever you throw at it!<p>Rust is for those cases where that would cost too much money, and you’re willing to pay the programmers to spend their time working out the memory allocation details so that that the computers don’t have to. Most of the time programmers are more expensive than computer run time, so the extra cost isn’t worth paying.
评论 #31120826 未加载
cjgabout 3 years ago
Personally, I would just use the first option, unless I had a specific reason otherwise.