rust 初探 -- 路径(path)

rust 初探 -- 路径Path

路径(Path)

  • 目的:为了在 Rust 的模块中找到某个条目,需要使用 路径
  • 两种形式:
    • 绝对路径:从 crate root 开始,使用 crate 名或字面值 crate
    • 相对路径:从当前模块开始,使用 self,super 或当前模块的标识符
  • 路径至少由一个标识符组成,标识符之间使用 ::
    示例:
rust 复制代码
mod front_of_house {
	// pub mod hosting {
    mod hosting {
    	// fn add_to_waitlist() {}
        fn add_to_waitlist() {}
    }
}

pub fn eat_at_restaurant() {
    //使用绝对路径调用
    crate::front_of_house::hosting::add_to_waitlist();
    // --------------- function `add_to_waitlist` is not publicly re-exported
    // 因为是私有的

    //使用相对路径调用
    front_of_house::hosting::add_to_waitlist();
}

私有边界(privacy boundary)

  • 模块不仅可以组织代码,还可以定义私有边界
  • 如果想把函数或struct 等设为私有,将其放到某个模块中即可
  • Rust 中所有的条目默认是私有的
  • 父级模块无法访问子模块中的私有条目
  • 子模块里可以使用所有祖先模块中的条目
pub 关键字
  • 使用 pub 可以将某些条目设置为公共的

super 关键字

  • 用于访问父级模块路径中的内容,相当于文件目录中的 ...
rust 复制代码
fn sever_order() {}

mod back_of_house {
    fn fix_incorrect_order() {
        cook_order();
        super::sever_order();//进入到模块外面
        // crate::sever_order();
    }

    fn cook_order() {}
}

pub struct

  • pub 放在 struct 之前:struct 是公共的,里面的字段默认不是公共的(除非加上 pub)
rust 复制代码
mod back_of_house {
    pub struct Breakfast {
        pub toast: String,
        fruit: String,
    }

    // 关联函数
    impl Breakfast {
        pub fn summer(toast: &str) -> Breakfast {
            Breakfast {
                toast: String::from(toast),
                fruit: String::from("peach"),
            }
        }
    }
}

pub fn eat_at_restaurant() {
    let mut meal = back_of_house::Breakfast::summer("rye");
    meal.toast = String::from("wheat");
    // meal.fruit = String::from("apple");//field `fruit` of `Breakfast` is private
    println!("{}", meal.toast)
}

上述示例中,meal.toast 可以访问,但是meal.fruit 因为是私有的,不能访问。

pub enum

  • 和 struct 不一样,如果枚举是公共的,那么它里面的所有枚举默认就是公共的
相关推荐
guest_8812 分钟前
用 Python 打造打篮球字符动画!控制台彩色炫酷输出,抖音搞怪视频灵感还原
开发语言·python·numpy·pillow
互联网打工人no115 分钟前
.NET8 依赖注入组件
开发语言·c#·.net·ioc
yuhaiqiang20 分钟前
这些热门开源商城系统,你不能错过!
后端
道剑剑非道21 分钟前
QT开发技术【QT实现桌面右下角消息】
开发语言·数据库·qt
fs哆哆22 分钟前
在VB.net和VBA中,自定义函数GetTargetSheet()返回工作表对象
java·开发语言·前端·javascript·ecmascript
java程序员CC25 分钟前
使用springboot+easyexcel实现导出excel并合并指定单元格
spring boot·后端·excel
努力学习的小廉26 分钟前
我爱学算法之—— 二分查找(上)
开发语言·c++·算法
东木月27 分钟前
Python解析地址中省市区街道
开发语言·python
风象南32 分钟前
SpringBoot中内置的49个常用工具类
java·spring boot·后端
wqfhenanxc2 小时前
Mixing C++ and Rust for Fun and Profit 阅读笔记
c++·笔记·rust