Rust语言基础
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rust语言基础相关的知识,希望对你有一定的参考价值。
安装 Rust
- 官网:https://www.rust-lang.org/
- Linux or Mac:
- curl https://rustup.rs -sSf | sh
- Windows: 按官网指示操作
- Windows Subsystem for Linux:
- curl --proto ‘=https’ --tlsv1.2 -sSf https://sh.rustup.rs | sh
查看是否安装成功
rustc --version
更新与卸载 Rust
- 更新 Rust
- rustup update
- 卸载 Rust
- rustup self uninstall
本地文档
- 安装Rust时,会在本地安装文档,可离线浏览
- 运行
rustup doc
可在浏览器打开本地文档
开发工具
- Visual Studio Code
- Rust 插件
- Clion(Intellij Idea 系列)
- Rust 插件
Hello World
新建文件夹 mkdir hello_world
进入文件夹 cd h*
使用 VS Code 打开 code .
编写 Rust 程序
- 程序文件后缀名:rs
- 文件命名规范:hello_world.rs
fn main()
println!("Hello World");
编译与运行 Rust 程序
- 编译:rustc main.rs
编译成功了!
可以看到VS Code 下多了两个文件,分别是main.exe和main.pdb。 - 运行:
- Windows:.\\main.exe
- Linux/mac:./main
以上是关于Rust语言基础的主要内容,如果未能解决你的问题,请参考以下文章
rust语言:开始学习rust语言,使用vscode进行开发,rust不要做为自己的第一门开发语言,c++和rust都要学习好,成年人两个都要。