這篇文章是實戰性質的,也就是說原理部分較少,屬於經驗總結,rust對於模組的例子太少了。rust特性比較多(悲),本文的內容可能只是一部分,實現方式也不一定是這一種。
關於 rust 模組的相關內容,準確來說:怎麼在原始碼中參照其他模組的內容。
mod
、 use
、as
這幾個關鍵字(檔名)mod.rs
檔案self
、 super
、 crate
這幾個路徑關鍵字worksapce
:本文不討論,狹義上指的是cargo的 [workspace]
部分: 可參見 The [workspace] sectionpackage
: 狹義上指的是cargo的 [package]
部分,參見 The [package] sectioncrate
:參見下文 關於 create 的定義和 cargo 管理下的 cratemodule
:本文的重點, crate 裡 會有多個 module,文字討論重點就是 mod 之間相互參照的問題。參照模組要搞清楚的:
mod
關鍵字:
mod xxx { <rust語句塊> }
:內部寫 rust 語句 。見 例一#[path="...xxxx.rs"] mod xxx;
:使用 path 屬性 ,使用見例二mod xxx { include!("...xxxx.rs") }
:內部配合 include!
宏,使用見例二mod toy;
語句來引入一個模組,實際上這跟你在哪裡寫的這個語句有關係有關
src/main.rs
、 src/lib.rs
或者 xxx/.../mod.rs
位置上的檔案; 型別B: 位置不在1中的檔案。mod toy;
,你實際上在告訴編譯器,你需要的模組是與此檔案同級的 toy.rs
或者 toy/mod.rs
檔案 。編譯器會自己找下這兩個被參照的位置,如果兩個位置都有檔案,則報錯。見 例三mod toy;
,你實際上在告訴編譯器,你需要的模組是與此檔案(假設檔名為 foo.rs
)同級的 foo
資料夾下的 foo/toy.rs
或者 foo/toy/mod.rs
檔案。編譯器會自己找下這兩個被參照的位置,如果兩個位置都有檔案,則報錯。 見 例四use
關鍵字也有兩個作用
as
關鍵字一起使用,進一步減少重複程式碼,或者防止名字重複,或者取個順眼的名字 例子六如果我們想要呼叫一個函數,我們需要知道它的路徑。路徑有兩種形式:
見檔案: https://rustwiki.org/zh-CN/book/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.html
我們都知道通過 cargo 建立出的工程中 src/main.rs
就是程式的入口,但是還有更多的使用方式。
下面就是一些問題了
bin
和 lib
,其他型別參見 rust參考手冊-連結▾ src/ # 包含原始檔的目錄
lib.rs # 庫和包的主要入口點
main.rs # 包生成可執行檔案的主要入口點
▾ bin/ # (可選)包含其他可執行檔案的目錄
*.rs
▾ */ # (可選)包含多檔案可執行檔案的目錄
main.rs
▾ examples/ # (可選)範例
*.rs
▾ */ # (可選)包含多檔案範例的目錄
main.rs
▾ tests/ # (可選)整合測試
*.rs
▾ */ # (可選)包含多檔案測試的目錄
main.rs
▾ benches/ # (可選)基準
*.rs
▾ */ # (可選)包含多檔案基準的目錄
main.rs
toy
模組run
函數需要加 pub
關鍵字,否則不會被匯出src/main.rs
mod toy {
pub fn run() {
println!("run toy");
}
}
fn main() {
toy::run();
}
輸出
run toy
toy
模組src/toy_implements.rs
pub fn run() {
println!("run toy_impl !");
}
src/main.rs
mod toy1 { // 方法1: 使用 include!
include!("./toy_implements.rs");
}
#[path ="./toy_implements.rs"]
mod toy2; // 方法2: 使用 path 屬性定位檔案位置
fn main() {
toy1::run();
toy2::run();
}
輸出
run toy_impl !
run toy_impl !
src/toy.rs
pub fn run() {
println!("run toy_impl !");
}
src/main.rs
mod toy;
fn main() {
toy::run();
}
輸出
run toy_impl !
src/foo/toy.rs
pub fn run() {
println!("run toy_impl !");
}
src/foo.rs
mod toy;
fn say_hi() {
toy::run();
}
輸出
run toy_impl !
之前,我們使用了 toy::run()
來呼叫 run
函數。現在,我們使用 use
關鍵字來匯入 toy
模組裡的內容,這樣就能在 main
函數中直接使用
src/foo.rs
mod toy {
pub fn run() { // 注意使用 pub 關鍵字
println!("run toy");
}
}
fn main() {
use toy::*; // 使用 use 匯入 toy 模組裡的內容
run(); // 直接呼叫
}
src/foo.rs
mod toy {
pub fn run() { // 注意使用 pub 關鍵字
println!("run toy");
}
}
fn main() {
use toy::run as toy_run; // 使用 use + as 匯入 toy 模組裡的內容
toy_run();
}
src/toy/runner.rs
pub fn dog_run() { println!("dog is run !"); }
src/toy/fly.rs
pub fn fly_bird() { println!("bird is fly !"); }
src/toy/bear.rs
pub fn bear_eat() { println!("bear is eat fish !"); }
pub fn bear_sleep() { println!("bear is go sleep !"); }
src/toy/mod.rs
mod runner; // 引入同級 runner.rs 檔案
mod fly; // 引入同級 fly.rs 檔案
mod bear; // 引入同級 bear.rs 檔案
pub use runner::dog_run; // 宣告(匯出) dog_run 函數
pub use fly::fly_bird as now_fly_brid; // 宣告(匯出) fly_bird 函數,並重新命名為 now_fly_brid
pub use bear::*; // 宣告(匯出) dog_run 函數
src/main.rs
mod toy;
fn main() {
toy::dog_run();
toy::now_fly_brid();
toy::bear_eat();
toy::bear_sleep();
}
輸出
dog is run !
bird is fly !
bear is eat fish !
bear is go sleep !
src/toy/cube/mod.rs
pub fn get_size() {
println!("size is in main");
crate::top_size(); // 必不可少的 crate 關鍵字
}
src/toy/mod.rs
pub mod cube;
src/main.rs
mod toy;
fn top_size() {
println!("top size one !")
}
fn main() {
toy::cube::get_size();
}
輸出
size is in main
top size one !
!!強烈推薦看下面的參考做補充!!