2024 Rust现代实用教程Generic泛型

devtools/2024/11/6 18:38:49/

文章目录

  • 一、Generic structures泛型结构体
    • 1.泛型的应用类型
  • 二、Generic Function泛型函数
  • 参考

一、Generic structures泛型结构体

泛型是一种编程语言的特性,它允许在代码中使用参数化类型,以便在不同地方使用
相同的代码逻辑处理多种数据类型,而无需为每种类型编写单独的代码!

作用:
1.提高代码的重用性
2.提高代码的可读性
3.提高代码的抽象度

1.泛型的应用类型

1.泛型定义结构体\枚举
2.泛型定义函数
3.泛型与特质

rust">#[derive(Debug)]
struct Point<T> {x: T,y: T,
}#[derive(Debug)]
struct PointTwo<T, E> {x: T,y: E,
}
fn main() {let c1 = Point { x: 1.0, y: 2.0 };let c2 = Point { x: 'x', y: 'y' };println!("c1 {:?} c2 {:?}", c1, c2);let c = PointTwo { x: 1.0, y: 'z' };println!("{:?}", c);// Zero-Cost Abstraction
}

编译及运行:

 cargo runCompiling ch1_generic_struct v0.1.0 (/home/wangji/installer/rust/project/ch23_generic_struct)
warning: fields `x` and `y` are never read--> src/main.rs:3:5|
2 | struct Point<T> {|        ----- fields in this struct
3 |     x: T,|     ^
4 |     y: T,|     ^|= note: `Point` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis= note: `#[warn(dead_code)]` on by defaultwarning: fields `x` and `y` are never read--> src/main.rs:9:5|
8  | struct PointTwo<T, E> {|        -------- fields in this struct
9  |     x: T,|     ^
10 |     y: E,|     ^|= note: `PointTwo` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysiswarning: `ch1_generic_struct` (bin "ch1_generic_struct") generated 2 warningsFinished `dev` profile [unoptimized + debuginfo] target(s) in 0.30sRunning `target/debug/ch1_generic_struct`
c1 Point { x: 1.0, y: 2.0 } c2 Point { x: 'x', y: 'y' }
PointTwo { x: 1.0, y: 'z' }

二、Generic Function泛型函数

在Rust中,泛型也可以用于函数,使得函数能够处理多种类型的参数,提高代码的重用性和灵活性

1.泛型与普通函数
2.泛型与结构体中的方法

rust">// 交换
fn swap<T>(a: T, b: T) -> (T, T) {(b, a)
}struct Point<T> {x: T,y: T,
}impl<T> Point<T> {// 构造函数fn new(x: T, y: T) -> Self {Point { x, y }}// 方法fn get_coordinates(&self) -> (&T, &T) {(&self.x, &self.y)}
}fn main() {let result = swap::<f64>(0.1, 1.0);let result: (f64, f64) = swap(0.1, 1.0);println!("{:?}", result);let str2 = swap("hh", "tt");println!("str2.0 {} str2.1 {}", str2.0, str2.1);let str2 = swap(str2.0, str2.1);println!("str2.0 {} str2.1 {}", str2.0, str2.1);let i32_point = Point::new(2, 3);let f64_point = Point::new(2.0, 3.0);let (x1, y1) = i32_point.get_coordinates();let (x2, y2) = f64_point.get_coordinates();println!("i32 point: x= {} y= {}", x1, y1);println!("f64 point: x= {} y= {}", x2, y2);// String 不要用&str//最好使用:let string_point = Point::new("xxx".to_owned(), "yyyy".to_owned());let string_point = Point::new("xxx", "yyyy");println!("string point x = {} y = {}", string_point.x, string_point.y);
}

编译及运行

 cargo runCompiling ch24_func v0.1.0 (/home/wangji/installer/rust/project/ch24_func)
warning: unused variable: `result`--> src/main.rs:23:9|
23 |     let result = swap::<f64>(0.1, 1.0);|         ^^^^^^ help: if this is intentional, prefix it with an underscore: `_result`|= note: `#[warn(unused_variables)]` on by defaultwarning: `ch24_func` (bin "ch24_func") generated 1 warningFinished `dev` profile [unoptimized + debuginfo] target(s) in 0.33sRunning `target/debug/ch24_func`
(1.0, 0.1)
str2.0 tt str2.1 hh
str2.0 hh str2.1 tt
i32 point: x= 2 y= 3
f64 point: x= 2 y= 3
string point x = xxx y = yyyy

参考

  • 2024 Rust现代实用教程

http://www.ppmy.cn/devtools/131817.html

相关文章

STM32——ADC

目录 1、ADC的介绍 2、ADC主要特征 3、ADC结构与引脚 4、ADC配置流程 5、示例&#xff08;光敏电阻的ADC采样&#xff09; 6、提示 7、结语&#xff1a; 1、ADC的介绍 12位ADC是一种逐次逼近型模拟数字转换器。它有多达18个通道&#xff0c;可测量16个外部和2个内部 信号…

新视野大学英语读写教程1第四版PDF+答案+听力音频

《新视野大学英语》(第四版) 系列教材包含1—4级&#xff0c; 供两个学年使用。每一级别包含《读写教程》(配教师用书)、《视听说教程》(配教师用书)、《综合训练》和《长篇阅读》。教材提供教学管理平台、数字课程、微课视频、移动学习应用、教学课件、试题库等立体丰富的教学…

Shortcut Learning in In-Context Learning: A Survey

为我们的综述打一打广告&#xff0c;目前是初级版本&#xff0c;欢迎各位批评指正&#xff01;后续的论文列表、测评基准会在Github更新[/(ㄒoㄒ)/~~最近比较忙容许我拖一拖] 这里是arxiv链接&#xff1a;Linking!!! Abstract&#xff1a;捷径学习是指模型在实际任务中使用简单…

CMake set cache用法

在 CMake 中&#xff0c;set(<variable> <value>... CACHE <type> <docstring> [FORCE]) 语法中的 CACHE 是用于定义和存储全局变量的关键字。这种变量在 CMake 配置期间会被缓存&#xff0c;可以跨多个 CMake 配置调用之间保留其值&#xff0c;而不是…

第六章 DNS域名解析服务器

2、DNS域名解析的过程 3、DNS服务器配置 实验3&#xff1a;主从DNS服务器 将一个区域文件复制到多个服务器上的过程叫做区域传送。将主服务器上的信息复制到辅助服务器上来 实现。 &#xff08;1&#xff09;完全区域传送&#xff1a;复制整个区域文件

使用官网tar包制作OpenSSL及OpenSSH rpm包进行升级安装(OpenSSH_9.9p1, without OpenSSL未解决)

一、制作openssl-1.1.1w.rpm包 1、安装基础依赖包和rpmbuild及其依赖包 yum install curl which make gcc perl perl-WWW-Curl rpm-build rpm-build rpmdevtools tree -y yum install gcc-c glibc glibc-devel openssl openssl-devel \pcre-devel zlib zlib-devel perl…

2024 Rust现代实用教程Iterator迭代器

文章目录 一、迭代与循环1.循环2.迭代iteration3.区别 二、Intoiterator、Iterator和Iter之间的关系1.Intolterator2.Iterator Trait3. 源码中经常出现的iter 三、获取迭代器的三种方法iter(),iter_mut()和into_iter()1.iter()方法2.iter_mut()方法3.into_iter()方法---尽量写 …

BackTrader-Commission 06

Backtrader 策略实例&#xff0c;该部分内容通过使用backtrader对常用的策略实例的编写&#xff0c;提高和熟悉backtrader的实际场景的使用。 [Backtrader]实例:均线策略 [Backtrader] 实例:MACD策略 [Backtrader] 实例:KDJ 策略 [Backtrader] 实例:RSI 与 EMA 结合 [Backtrade…