【rCore OS 开源操作系统】Rust 练习题题解: Structs

server/2024/10/9 5:23:39/

OS_Rust__Structs_0">【rCore OS 开源操作系统】Rust 练习题题解: Structs

摘要

rCore OS 开源操作系统训练营学习中的代码练习部分。
在此记录下自己学习过程中的产物,以便于日后更有“收获感”。
后续还会继续完成其他章节的练习题题解。

正文

structs1

题目
rust">// structs1.rs
//
// Address all the TODOs to make the tests pass!
//
// Execute `rustlings hint structs1` or use the `hint` watch subcommand for a
// hint.// I AM NOT DONEstruct ColorClassicStruct {// TODO: Something goes here
}struct ColorTupleStruct(/* TODO: Something goes here */
);#[derive(Debug)]
struct UnitLikeStruct;#[cfg(test)]
mod tests {use super::*;#[test]fn classic_c_structs() {// TODO: Instantiate a classic c struct!// let green =assert_eq!(green.red, 0);assert_eq!(green.green, 255);assert_eq!(green.blue, 0);}#[test]fn tuple_structs() {// TODO: Instantiate a tuple struct!// let green =assert_eq!(green.0, 0);assert_eq!(green.1, 255);assert_eq!(green.2, 0);}#[test]fn unit_structs() {// TODO: Instantiate a unit-like struct!// let unit_like_struct =let message = format!("{:?}s are fun!", unit_like_struct);assert_eq!(message, "UnitLikeStructs are fun!");}
}
题解

参考《定义和举例说明结构体 - Rust 程序设计语言 中文版》第五章

structs 的基本如下:

rust">// 定义
struct User {age: i32,active: bool,username: String,email: String,sign_in_count: u64,
}
// 实现方法
impl User{fn info(&self) -> i32 {&self.age + 1 // 不加分号,就是 tail exp, 自带 return}
}
// 实例化
let rect1 = Rectangle {width: 30,height: 50,
};rect1.area()// 元组结构体定义struct User2(i32, i32, i32);let user = User2(1, 1, 1);// 类单元结构体定义struct User3;let user3 = User3;

所以答案也就是呼之欲出了:

rust">// structs1.rs
//
// Address all the TODOs to make the tests pass!
//
// Execute `rustlings hint structs1` or use the `hint` watch subcommand for a
// hint.struct ColorClassicStruct {// TODO: Something goes herered: i32,green: i32,blue: i32,
}struct ColorTupleStruct(/* TODO: Something goes here */ i32, i32, i32);#[derive(Debug)]
struct UnitLikeStruct;#[cfg(test)]
mod tests {use super::*;#[test]fn classic_c_structs() {// TODO: Instantiate a classic c struct!let green = ColorClassicStruct {red: 0,green: 255,blue: 0,};assert_eq!(green.red, 0);assert_eq!(green.green, 255);assert_eq!(green.blue, 0);}#[test]fn tuple_structs() {// TODO: Instantiate a tuple struct!let green = ColorTupleStruct(0, 255, 0);assert_eq!(green.0, 0);assert_eq!(green.1, 255);assert_eq!(green.2, 0);}#[test]fn unit_structs() {// TODO: Instantiate a unit-like struct!let unit_like_struct = UnitLikeStruct;let message = format!("{:?}s are fun!", unit_like_struct);assert_eq!(message, "UnitLikeStructs are fun!");}
}

Structs2

题目
rust">// structs2.rs
//
// Address all the TODOs to make the tests pass!
//
// Execute `rustlings hint structs2` or use the `hint` watch subcommand for a
// hint.// I AM NOT DONE#[derive(Debug)]
struct Order {name: String,year: u32,made_by_phone: bool,made_by_mobile: bool,made_by_email: bool,item_number: u32,count: u32,
}fn create_order_template() -> Order {Order {name: String::from("Bob"),year: 2019,made_by_phone: false,made_by_mobile: false,made_by_email: true,item_number: 123,count: 0,}
}#[cfg(test)]
mod tests {use super::*;#[test]fn your_order() {let order_template = create_order_template();// TODO: Create your own order using the update syntax and template above!// let your_order =assert_eq!(your_order.name, "Hacker in Rust");assert_eq!(your_order.year, order_template.year);assert_eq!(your_order.made_by_phone, order_template.made_by_phone);assert_eq!(your_order.made_by_mobile, order_template.made_by_mobile);assert_eq!(your_order.made_by_email, order_template.made_by_email);assert_eq!(your_order.item_number, order_template.item_number);assert_eq!(your_order.count, 1);}
}
解析

第二章节主要是考察结构体方法的实现。
参考:https://doc.rust-lang.org/stable/book/ch05-01-defining-structs.html#creating-instances-from-other-instances-with-struct-update-syntax

这里提到的update语法,是类似 JS 中的对象展开+字段覆盖的操作。

但是这里的覆盖是有固定优先级的,和字段书写顺序无关

rust">// structs2.rs
//
// Address all the TODOs to make the tests pass!
//
// Execute `rustlings hint structs2` or use the `hint` watch subcommand for a
// hint.#[derive(Debug)]
struct Order {name: String,year: u32,made_by_phone: bool,made_by_mobile: bool,made_by_email: bool,item_number: u32,count: u32,
}fn create_order_template() -> Order {Order {name: String::from("Bob"),year: 2019,made_by_phone: false,made_by_mobile: false,made_by_email: true,item_number: 123,count: 0,}
}#[cfg(test)]
mod tests {use super::*;#[test]fn your_order() {let order_template = create_order_template();// TODO: Create your own order using the update syntax and template above!let your_order = Order {name: String::from("Hacker in Rust"),count: 1,..order_template};assert_eq!(your_order.name, "Hacker in Rust");assert_eq!(your_order.year, order_template.year);assert_eq!(your_order.made_by_phone, order_template.made_by_phone);assert_eq!(your_order.made_by_mobile, order_template.made_by_mobile);assert_eq!(your_order.made_by_email, order_template.made_by_email);assert_eq!(your_order.item_number, order_template.item_number);assert_eq!(your_order.count, 1);}
}

Structs3

题目
rust">// structs3.rs
//
// Structs contain data, but can also have logic. In this exercise we have
// defined the Package struct and we want to test some logic attached to it.
// Make the code compile and the tests pass!
//
// Execute `rustlings hint structs3` or use the `hint` watch subcommand for a
// hint.// I AM NOT DONE#[derive(Debug)]
struct Package {sender_country: String,recipient_country: String,weight_in_grams: i32,
}impl Package {fn new(sender_country: String, recipient_country: String, weight_in_grams: i32) -> Package {if weight_in_grams <= 0 {panic!("Can not ship a weightless package.")} else {Package {sender_country,recipient_country,weight_in_grams,}}}fn is_international(&self) -> ??? {// Something goes here...}fn get_fees(&self, cents_per_gram: i32) -> ??? {// Something goes here...}
}#[cfg(test)]
mod tests {use super::*;#[test]#[should_panic]fn fail_creating_weightless_package() {let sender_country = String::from("Spain");let recipient_country = String::from("Austria");Package::new(sender_country, recipient_country, -2210);}#[test]fn create_international_package() {let sender_country = String::from("Spain");let recipient_country = String::from("Russia");let package = Package::new(sender_country, recipient_country, 1200);assert!(package.is_international());}#[test]fn create_local_package() {let sender_country = String::from("Canada");let recipient_country = sender_country.clone();let package = Package::new(sender_country, recipient_country, 1200);assert!(!package.is_international());}#[test]fn calculate_transport_fees() {let sender_country = String::from("Spain");let recipient_country = String::from("Spain");let cents_per_gram = 3;let package = Package::new(sender_country, recipient_country, 1500);assert_eq!(package.get_fees(cents_per_gram), 4500);assert_eq!(package.get_fees(cents_per_gram * 2), 9000);}
}
解析

根据意思,补全结构体的方法实现,对比是否为同一个地区,判断是否相同,以及计算费用,比较简单。

rust">// structs3.rs
//
// Structs contain data, but can also have logic. In this exercise we have
// defined the Package struct and we want to test some logic attached to it.
// Make the code compile and the tests pass!
//
// Execute `rustlings hint structs3` or use the `hint` watch subcommand for a
// hint.#[derive(Debug)]
struct Package {sender_country: String,recipient_country: String,weight_in_grams: i32,
}impl Package {fn new(sender_country: String, recipient_country: String, weight_in_grams: i32) -> Package {if weight_in_grams <= 0 {panic!("Can not ship a weightless package.")} else {Package {sender_country,recipient_country,weight_in_grams,}}}fn is_international(&self) -> bool {// Something goes here...&self.sender_country != &self.recipient_country}fn get_fees(&self, cents_per_gram: i32) -> i32 {// Something goes here...&self.weight_in_grams * cents_per_gram}
}#[cfg(test)]
mod tests {use super::*;#[test]#[should_panic]fn fail_creating_weightless_package() {let sender_country = String::from("Spain");let recipient_country = String::from("Austria");Package::new(sender_country, recipient_country, -2210);}#[test]fn create_international_package() {let sender_country = String::from("Spain");let recipient_country = String::from("Russia");let package = Package::new(sender_country, recipient_country, 1200);assert!(package.is_international());}#[test]fn create_local_package() {let sender_country = String::from("Canada");let recipient_country = sender_country.clone();let package = Package::new(sender_country, recipient_country, 1200);assert!(!package.is_international());}#[test]fn calculate_transport_fees() {let sender_country = String::from("Spain");let recipient_country = String::from("Spain");let cents_per_gram = 3;let package = Package::new(sender_country, recipient_country, 1500);assert_eq!(package.get_fees(cents_per_gram), 4500);assert_eq!(package.get_fees(cents_per_gram * 2), 9000);}
}

http://www.ppmy.cn/server/126549.html

相关文章

通过python-api使用openai的gpt

目前&#xff0c;OpenAI 提供的 GPT 模型可以通过其提供的 API 进行访问。以下是如何通过 Python 使用 OpenAI GPT API 的详细步骤&#xff1a; 1. 安装 OpenAI Python 库 首先&#xff0c;你需要安装 OpenAI 的 Python 库。可以通过 pip 安装&#xff1a; pip install open…

C语言基础(7)之操作符(1)(详细介绍)

目录 1. 各种操作符介绍 1.1 操作符汇总表 2. 移位操作符 2.1 移位操作符知识拓展 —— 原码、反码、补码 2.2 移位操作符讲解 2.2.1 右移操作符 ( >> ) 2.2.2 左移操作符 ( << ) 3. 位操作符 3.1 & (按位与) 3.2 | (按位或) 3.3 ^ (按位异或) 3.4…

08-Registry搭建docker私仓

08-Registry搭建docker私仓 Docker Registry Docker Registry是官方提供的工具&#xff0c;用于构建私有镜像仓库。 环境搭建 Docker Registry也是Docker Hub提供的一个镜像&#xff0c;可以直接拉取运行。 步骤&#xff1a; 拉取镜像 docker pull registry启动Docker R…

CSS常用属性、属性值

目录 盒子&#xff08;一般写在div中&#xff09;&#xff1a; 选择器&#xff1a; 基础选择器 复合选择器 结构伪类选择器&#xff1a; nth-child(公式) 伪元素选择器&#xff1a; 文字控制属性名&#xff08;写在选择器中&#xff09; 字体粗细&#xff08;font-weig…

【Docker】docker的存储

介绍 docker存储主要是涉及到3个方面&#xff1a; 第一个是容器启动时需要的镜像 镜像文件都是基于图层存储驱动来实现的&#xff0c;镜像图层都是只读层&#xff0c; 第二个是&#xff1a; 容器读写层&#xff0c; 容器启动后&#xff0c;docker会基于容器镜像的读层&…

【springboot】整合沙箱支付

目录 1. 配置沙箱应用环境2. 配置springboot项目1. 引入依赖2. 配置文件注册下载ngrok 3. 创建支付宝支付服务类4. 支付界面模板5. 控制类实现支付6. 测试 1. 配置沙箱应用环境 使用支付宝账号登录到开放平台控制台。 使用支付宝登录后&#xff0c;看到以下页面&#xff0c;下…

数值分析作业(第二章):代码+手写计算

《数值计算方法》丁丽娟-数值实验作业-第二章&#xff08;MATLAB&#xff09; 作业P58: 1 &#xff0c;2&#xff0c;3&#xff0c;6&#xff0c;8(1), 12, 13 数值实验P61: 2, 3 数值实验&#xff08;第二章&#xff09; 代码仓库&#xff1a;https://github.com/sylvanding/b…

二叉树进阶练习——根据二叉树创建字符串

1.题目解析 题目来源&#xff1a;606.根据二叉树创建字符串 测试用例 2.算法原理 根据上面的题目我们知道这里需要根据前序遍历来创建字符串&#xff0c;并且需要将每棵子树使用括号括起来&#xff0c;但是要根据实际情况省略括号&#xff0c;比如当右子树为空左子树为空就可…