Rust跟Go的比较有哪些不同?

发布于 2022-09-03 09:12:39 字数 40 浏览 17 评论 0

Rust跟Go的比较有哪些不同?各自的优点和缺点?各自的应用场景?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

吃兔兔 2022-09-10 09:12:39

刚刚看了Quora上的同类问题: https://www.quora.com/How-do-Rust-and-Go-compare-1

我的一些浅薄的理解

不同:

  1. Go 更类似 C。Rust更类似C++。Go试图将语言简化,可以没有的就没有。Rust倒是有Generics这种。

  2. Go 还是有GC的。但据说最新版的Go的GC已经牛到不会stop the world了。Rust没有GC。而是用ownership, borrow这种东东保证内存使用的安全。

  3. Rust 保证thread safe。这是个大卖点。貌似Go没有。

  4. Rust 貌似library更多 。

  5. 用Go写的著名软件貌似多些。CoreOS, Docker, etc

相似:

  1. 都是编译的语言

  2. 都是系统编程语言

  3. 都试图解决C/C++的问题

  4. 都有channel这类东西

  5. 都属于比较语法比较简洁的

抛砖完毕

挽你眉间 2022-09-10 09:12:39

这篇文章你可以看一下(一个拥有3.5年go经验,进入rust的总结):https://medium.com/@deckarep/paradigms-of-rust-for-the-go-developer-210f67cd6a29

兰花执着 2022-09-10 09:12:39

Go: A better C.
Rust: A better C++, a practical Haskell.

@北方的狼 说得不准确。虽然它们都号称是「系统级编程语言」,但很明显,它们对「系统级编程语言」的定义不一样。

就像 /u/Manishearth 说的

What happened is that Rust and Go are both new languages, claiming to replace C/C++ use cases (different use cases), both claiming to target systems programming (different definitions of systems programming), and both coming from major Web companies. These are superficial similarities and they target very different audiences internally (again, there is overlap, but most of it is recent overlap, and it's not the majority), but a lot of people used this to portray Rust and Go as competitors; and this meme continued for a long time. Now with the spreading of awareness this is less the case -- folks compare tooling and stuff now, but people consider the languages to be targeting different things.

所以,你不如找找看它们有哪些相同。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文