当前位置:   article > 正文

《The Rust Programming Language》的Rust 学习4_the rust programming language中文版

the rust programming language中文版

Structure

Define

介绍了基本的一些概念
几个点记录下
术语:

struct Usr {
name :String,
age : u32,

}
  • 1
  • 2
  • 3
  • 4
  • 5

结构体里面的变量部分被称为 字段(field)
注意: 实例化的时候字段不用考虑顺序

  1. 函数的参数名与字段一致,不用 重复写了
    比如
fn get_name(name :String) -> Usr{
struct Usr {
name //不用 name :name了
age : 0,
}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  1. 结构体更新语法
let user1 = Usr {
name :"asd",
..user0
}
  • 1
  • 2
  • 3
  • 4
  1. 使用元组
struct data(i32,i32,i32);
let data1 = data(1,2,3);
  • 1
  • 2

可以用 data.0访问值

Example

函数传 数字,传元组,传结构体

输出

结构体的输出,默认情况下加上 #[derive(Debug)]后,占位直接用{:?}(一行输出)或{:#?}(展开多行输出)

Method

Rust 也有和其他语言类似的 method 方法

struct Rectangle {
    width: u32,
    height: u32,
}

impl Rectangle {
    fn area(&self) -> u32 {
        self.width * self.height
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

方法中有参数 self,但在调用的时候不用显示的添加内容re1.area()就行了,
选择情况

情况意义
self获取所有权
&self只读,不改,不获取所有权
& mut self读写

Associated Function

impl 下的函数不必都有 self参数,这类函数叫做联合函数而不叫方法。
通常用于返回新的实例。
比如:

#[derive(Debug)]
struct Rectangle {
    width: u32,
    height: u32,
}

impl Rectangle {
    fn square(size: u32) -> Rectangle {
        Rectangle {
            width: size,
            height: size,
        }
    }
}

fn main() {
    let sq = Rectangle::square(3);
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

利用::来调用联合函数,比如String::form("hello")

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/702767
推荐阅读
相关标签
  

闽ICP备14008679号