【译】关于Rust模块的清晰解释
原文链接: http://www.sheshbabu.com/posts/rust-module-system/
原文标题: Clear explanation of Rust’s module system
公众号: Rust碎碎念
翻译: Praying
Rust的模块(module)系统相当令人困惑,这也给很多初学者带来了挫败感。
在本文中,我将会通过实际的例子来解释模块系统以便于让你清晰地理解它是怎样工作的并且能够快速在自己的项目中应用。
由于Rust的模块系统比较独特,我希望读者以开放性思维来进行阅读,并且尽量不要将其与其他语言中的模块的工作方式进行比较。
让我们使用下面的文件结构来模拟一个真实世界中的项目:
my_project
├── Cargo.toml
└─┬ src
├── main.rs
├── config.rs
├─┬ routes
│ ├── health_route.rs
│ └── user_route.rs
└─┬ models
└── user_model.rs
下面是一些使用我们的模块的不同方式:
下面的3个例子应该足以解释Rust的模块系统是如何工作的。
示例1
让我们从第一个例子开始 —— 在main.rs
中导入config.rs
。
// main.rs
fn main() {
println!("main");
}
// config.rs
fn print_config() {
println!("config");
}
很多人常犯的第一个错误是因为我们有像config.rs
,health_route.rs
这样的文件,所以我们就认为这些文件就是模块(module)
且可以在其他的文件中将其导入。
下面是从我们的视角(文件系统树(file system tree))看到的内容和从编译器的角度(模块树(module tree))看到的内容:
令人惊奇,编译器只看到了crate
模块,也就是我们的main.rs
文件。这是因为我们需要显式地在Rust中构建模块树——在文件系统树和模块树之间不存在隐式的转换。
我们需要显式地在Rust中构建模块树——在文件系统树和模块树之间不存在隐式的转换。
想要把一个文件添加到模块树中,我们需要使用mod
关键字来将这个文件声明为一个子模块(submodule)。另一件使人们感到困惑的事情是你会认为在相同的文件里把一个文件声明为模块(译者注:比如使用mod关键字把config.rs声明为子模块,你可能认为需要在config.rs里来写声明)。但是我们需要在一个不同文件里进行声明!因为我们在这个模块树里只有main.rs
这个文件,所以要在main.rs
里将config.rs
声明为一个子模块。
mod 关键字声明一个子模块
mod
关键字语法如下:
mod my_module;
这里,编译器在相同的目录下查找my_module.rs
或者my_module/mod.rs
。
my_project
├── Cargo.toml
└─┬ src
├── main.rs
└── my_module.rs
或者
my_project
├── Cargo.toml
└─┬ src
├── main.rs
└─┬ my_module
└── mod.rs
因为main.rs
和config.rs
在相同的目录下,让我们按照下面的代码声明config模块
// main.rs
+ mod config;
fn main() {
+ config::print_config();
println!("main");
}
// config.rs
fn print_config() {
println!("config");
}
这里,我们通过::
语法使用print_config
函数。
下面是模块树的样子:
我们已经成功地声明了config
模块!但是这还不能调用config.rs
里的print_config
函数。几乎Rust里面的一切默认都是私有(private)的,我们需要使用pub
关键字来让这个函数成为公开(public)的:
pub关键字使事物公开
// main.rs
mod config;
fn main() {
config::print_config();
println!("main");
}
// config.rs
- fn print_config() {
+ pub fn print_config() {
println!("config");
}
现在,这样可以正常工作了。我们已经成功的调用了定义在另一个文件里的函数!
示例2
让我们尝试在main.rs
中调用定义在routes/health_route.rs
里的print_health_route
函数。
// main.rs
mod config;
fn main() {
config::print_config();
println!("main");
}
// routes/health_route.rs
fn print_health_route() {
println!("health_route");
}
正如我们之前所讨论的,我们只能对相同目录下的my_module.rs
或者my_module/mod.rs
使用mod
关键字。
所以为了能够在main.rs
中调用routes/health_route.rs
里定义的函数,我们需要做下面的事情:
创建一个名为 routes/mod.rs
的文件并且在main.rs
中声明routes
子模块在 routes/mod.rs
中声明health_route
子模块并且使其成为公开(public)的使 health_route.rs
里的函数公开(public)
my_project
├── Cargo.toml
└─┬ src
├── main.rs
├── config.rs
├─┬ routes
+ │ ├── mod.rs
│ ├── health_route.rs
│ └── user_route.rs
└─┬ models
└── user_model.rs
// main.rs
mod config;
+ mod routes;
fn main() {
+ routes::health_route::print_health_route();
config::print_config();
println!("main");
}
// routes/mod.rs
+ pub mod health_route;
// routes/health_route.rs
- fn print_health_route() {
+ pub fn print_health_route() {
println!("health_route");
}
下面是模块树的样子:
现在我们可以调用某个目录下文件里定义的函数了。
示例 3
让我们尝试这样的调用main.rs => routes/user_route.rs => models/user_model.rs
(译者注:这里是main.rs
里调用routes/user_route.rs
里的函数,而routes/user_route.rs
里的函数又调用了models/user_model.rs
里的函数)
// main.rs
mod config;
mod routes;
fn main() {
routes::health_route::print_health_route();
config::print_config();
println!("main");
}
// routes/user_route.rs
fn print_user_route() {
println!("user_route");
}
// models/user_model.rs
fn print_user_model() {
println!("user_model");
}
我们想要在main.rs
里调用print_user_route
函数,而print_user_route
函数调用了print_user_model
函数
让我们来进行和之前相同的操作——声明子模块,使函数公开并将子模块添加到mod.rs
文件之中。
my_project
├── Cargo.toml
└─┬ src
├── main.rs
├── config.rs
├─┬ routes
│ ├── mod.rs
│ ├── health_route.rs
│ └── user_route.rs
└─┬ models
+ ├── mod.rs
└── user_model.rs
// main.rs
mod config;
mod routes;
+ mod models;
fn main() {
routes::health_route::print_health_route();
+ routes::user_route::print_user_route();
config::print_config();
println!("main");
}
// routes/mod.rs
pub mod health_route;
+ pub mod user_route;
// routes/user_route.rs
- fn print_user_route() {
+ pub fn print_user_route() {
println!("user_route");
}
// models/mod.rs
+ pub mod user_model;
// models/user_model.rs
- fn print_user_model() {
+ pub fn print_user_model() {
println!("user_model");
}
下面是模块树的样子:
等等,我们还没有真正地在print_user_route
里调用print_user_model
!目前为止,我们仅仅在main.rs
里调用定义在其他模块里的函数,在别的文件里调用其他模块的函数应该怎么做么?
如果我们看一下我们的模块树,print_user_model
位于crate::models::user_model
。所以为了能在非main.rs
的其他文件里使用一个模块,我们应该按照模块树中到达指定模块所需要的路径来进行考虑。
// routes/user_route.rs
pub fn print_user_route() {
+ crate::models::user_model::print_user_model();
println!("user_route");
}
现在我们已经成功地在一个非main.rs
的文件里调用了定义在另一个文件里的函数。
super
如果我们的文件组织包含多级目录,完整的限定名就会变得很长。出于某些原因,我们想要从print_user_route
中调用print_health_route
。它们分别位于crate::routes::health_route
和crate::routes::user_route
。
我们可以使用完整路径的限定名crate::routes::health_route::print_health_route();
, 但是我们也可以使用一个相对路径super::health_route::print_health_route();
模块路径中的super关键字指向父级作用域
pub fn print_user_route() {
crate::routes::health_route::print_health_route();
// can also be called using
super::health_route::print_health_route();
println!("user_route");
}
use
在上面的例子中,无论是使用完整的限定名还是相对路径的限定名都很冗长。为了让限定名变得更短,我们可以使用use
关键字来给路径绑定一个新名字或者别名。
use关键字用于使模块路径更短
pub fn print_user_route() {
crate::models::user_model::print_user_model();
println!("user_route");
}
上面的代码可以重写为:
use crate::models::user_model::print_user_model;
pub fn print_user_route() {
print_user_model();
println!("user_route");
}
除了使用print_user_model
这个名字,我们还可以给它起个别名:
use crate::models::user_model::print_user_model as log_user_model;
pub fn print_user_route() {
log_user_model();
println!("user_route");
}
外部模块(External modules)
添加到Cargo.toml
里的依赖对于项目内的所有模块都是可以访问的。我们不需要显式地导入或声明任何东西来使用依赖项。
外部依赖对于项目内的所有模块都是可以访问的
例如,比如说我们在项目中添加了rand[1]这个crate。我们可以像下面这样在代码里直接使用:
pub fn print_health_route() {
let random_number: u8 = rand::random();
println!("{}", random_number);
println!("health_route");
}
我们也可以使用use
来简化路径:
use rand::random;
pub fn print_health_route() {
let random_number: u8 = random();
println!("{}", random_number);
println!("health_route");
}
总结
模块系统是显式的(译者注:需要明确的声明)——不存在和文件系统的1:1映射 我们在一个文件的父级目录把它声明为模块,而不是在文件自身 mod
关键字用于声明子模块我们需要显式地将函数、结构体等声明为公开的,这样它们才可以被其他模块访问 pub
关键字把事物声明为公开的use
关键字用于简化(缩短)模块路径我们不需要显式声明第三方的模块
参考资料
rand: https://crates.io/crates/rand
【译】关于Rust模块的清晰解释的更多相关文章
- 转译符,re模块,random模块
一, 转译符 1.python 中的转译符 正则表达式中的内容在Python中就是字符串 ' \n ' : \ 转移符赋予了这个n一个特殊意义,表示一个换行符 ' \ \ n' : \ \ 表示取 ...
- rust 模块组织结构
rust有自己的规则和约定用来组织模块,比如一个包最多可以有一个库crate,任意多个二进制crate.导入文件夹内的模块的两种约定方式... 知道这些约定,就可以快速了解rust的模块系统. 先把一 ...
- 【译】Rust宏:教程与示例(一)
原文标题:Macros in Rust: A tutorial with examples 原文链接:https://blog.logrocket.com/macros-in-rust-a-tutor ...
- 【译】Rust宏:教程与示例(二)
原文标题:Macros in Rust: A tutorial with examples 原文链接:https://blog.logrocket.com/macros-in-rust-a-tutor ...
- 【译】Rust中的array、vector和slice
原文链接:https://hashrust.com/blog/arrays-vectors-and-slices-in-rust/ 原文标题:Arrays, vectors and slices in ...
- 【译】Rust,无畏并发
原文链接:https://dev.to/imaculate3/fearless-concurrency-5fk8 > 原文标题:That's so Rusty! Fearless concurr ...
- python文档自译:os模块-01【说明部分】
15.1. os - Miscellaneous operating system interfaces This module provides a portable way of using op ...
- 【腾讯Bugly干货分享】微信mars 的高性能日志模块 xlog
本文来自于腾讯bugly开发者社区,未经作者同意,请勿转载,原文地址:http://dev.qq.com/topic/581c2c46bef1702a2db3ae53 Dev Club 是一个交流移动 ...
- Python os与sys模块解析
os与sys模块的官方解释如下: os: This module provides a portable way of using operating system dependent functio ...
随机推荐
- Android使用Mono c#分段列表视图
下载source code - 21.7 KB 你想知道如何把多个ListView控件放到一个布局中,但是让它们在显示时表现正确吗 多个列表项?你对它们正确滚动有问题吗?这个例子将向你展示如何组合单独 ...
- yii2框架路径相关
调用YII框架中jquery:Yii::app()->clientScript->registerCoreScript('jquery'); framework/web/js/source ...
- 关于Elasticsearch版本升级,Kibana报index迁移与需要x-pack插件问题
关于Elasticsearch版本升级,Kibana报index迁移与需要x-pack插件问题 这个问题是由于elasticsearch旧版残留文件导致,使用下述指令删除即可 查看所有elastics ...
- TiOps,支持容器,支持多云安全远程运维,疫情期间免费开放,助力远程办公
TiOps,支持多云环境安全远程运维,疫情期间免费对外开放在疫情期间,为减少疾病传染可能性,许多公司的选择了在家远程办公.对于运维来说,既要远程运维,又要保证安全,还要在复杂的IT环境中保持高效,面临 ...
- C++分隔字符串split
split C++标准库中没有提供split分隔字符串的函数,哎. 实现一 下面的实现需要指定分隔符的集合delimiters,以及是否将连续的分隔符看作同一个分隔compress : enum cl ...
- 比特币PoW
比特币区块头结构 字段 大小(Byte) 说明 nVersion 4 区块版本号,表示本区块遵守的验证规则 hashPrevBlock 32 前一区块的哈希值,使用SHA256(SHA256(父区块头 ...
- kafka伪集群搭建
https://blog.csdn.net/zxy987872674/article/details/72466504
- Jquery特效之=》仿京东多条件筛选特效
仿京东多条件筛选特效 * { margin: 0; padding: 0; list-style-type: none } a, img { border: 0 } body { font: 12px ...
- Flink + 强化学习 搭建实时推荐系统
如今的推荐系统,对于实时性的要求越来越高,实时推荐的流程大致可以概括为这样: 推荐系统对于用户的请求产生推荐,用户对推荐结果作出反馈 (购买/点击/离开等等),推荐系统再根据用户反馈作出新的推荐.这个 ...
- MySQL数据库安装后的安全设置
导语: 已经通过报的方式安装了mysql,装完之后有些安全设置必须要做. 装完以后数据库已经可以使用了,但是有安全风险. 风险在访问数据库不需要任何信息就可以访问. [10:17:02 root@C8 ...