Rust 学习笔记 1:编译运行环境的构建

文章目录

  • [1. 前言](#1. 前言)
  • [2. 构建 Rust 编译运行环境](#2. 构建 Rust 编译运行环境)
  • [3. 编写第一个 Rust 程序](#3. 编写第一个 Rust 程序)
  • [4. Cargo](#4. Cargo)
    • [4.1 用 Cargo 构建 Rust 工程](#4.1 用 Cargo 构建 Rust 工程)
  • [5. 参考资料](#5. 参考资料)

1. 前言

2. 构建 Rust 编译运行环境

本文以 Ubuntu 16.04.4 LTS 为例,说明 Rust 编译运行环境的构建过程。

  • 安装最新的稳定版本
bash 复制代码
$ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
  • 从系统支持的包安装
bash 复制代码
$ sudo apt-get install rust # 安装
$ sudo rustup update # 更新
$ sudo rustup self uninstall # 卸载

3. 编写第一个 Rust 程序

建立一个 hello_world 文件夹,然后在其中构建一个名为 main.rs 的文件:

bash 复制代码
$ mkdir hello_world
$ cd hello_world
$ touch main.rs

编辑 main.rs 内容为:

rust 复制代码
fn main() {
    println!("Hello, world!");
}

编译:

bash 复制代码
$ rust main.rs
$ ls
main  main.rs

运行:

bash 复制代码
$ ./main
Hello, world!

4. Cargo

CargoRust 程序的构建系统包管理器,会自动下载程序依赖的库文件。Cargo 已经在前面的安装构成中安装了,通过下面的命令,确认是否正确安装了 Cargo

bash 复制代码
$ cargo --vesion
cargo 1.46.0

4.1 用 Cargo 构建 Rust 工程

bash 复制代码
$ cargo new hello_cargo
     Created binary (application) `hello_cargo` package
$ cd hello_cargo
$ tree
.
├── Cargo.toml
└── src
    └── main.rs

1 directory, 2 files
$ cat Cargo.toml
[package]
name = "hello_cargo"
version = "0.1.0"
authors = ["XXX <[email protected]>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
$ cat src/main.rs 
fn main() {
    println!("Hello, world!");
}

Cargo.tomlRust 工程配置文件,其语法遵从 TOML 。通过下面的命令编译 Cargo 工程:

bash 复制代码
$ cargo build
   Compiling hello_cargo v0.1.0 (/home/XXX/Study/lang/rust/hello_cargo)
    Finished dev [unoptimized + debuginfo] target(s) in 2.18s

运行 Cargo 工程编译生成的 Rust 程序:

bash 复制代码
$ ./target/debug/hello_cargo
Hello, world!
$ cargo run
    Finished dev [unoptimized + debuginfo] target(s) in 0.08s
     Running `target/debug/hello_cargo`
Hello, world!

5. 参考资料

1\] [The Rust Programming Language](https://doc.rust-lang.org/book/title-page.html)

相关推荐
Yeauty8 小时前
Rust 中的高效视频处理:利用硬件加速应对高分辨率视频
开发语言·rust·ffmpeg·音视频·音频·视频
zhu12893035569 小时前
基于Rust与WebAssembly实现高性能前端计算
前端·rust·wasm
关山月10 小时前
Rust 如何处理闭包:Fn、FnMut 和 FnOnce
rust
Vitalia17 小时前
从零开始学Rust:枚举(enum)与模式匹配核心机制
开发语言·后端·rust
一只小松许️19 小时前
Rust闭包详解
开发语言·rust
SoFlu软件机器人1 天前
Go/Rust 疯狂蚕食 Java 市场?老牌语言的 AI 化自救之路
java·golang·rust
小白学大数据1 天前
异步读取HTTP响应体的Rust实现
网络协议·http·rust
Source.Liu1 天前
【学Rust写CAD】24 扫描渐变(sweep_gradient.rs)
后端·rust
一只小松许️1 天前
Rust迭代器详解
rust
机构师1 天前
<tauri><rust><GUI>基于rust和tauri,实现一个svg转png的工具
javascript·后端·rust