1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
/// # 函数定义 /// /// Basic usage: /// /// ``` /// pub fn fizz_buzz(num: i32) -> String { /// if num % 15 == 0 { /// return "fizzbuzz".to_string(); /// } else if num % 3 == 0 { /// return "fizz".to_string(); /// } else if num % 5 == 0 { /// return "buzz".to_string(); /// } else { /// return num.to_string(); /// } /// } /// assert_eq!(fizz_buzz(15), "fizzbuzz".to_string()); /// assert_eq!(fizz_buzz(3), "fizz".to_string()); /// assert_eq!(fizz_buzz(5), "buzz".to_string()); /// assert_eq!(fizz_buzz(13), "13".to_string()); /// ``` pub fn fizz_buzz(num: i32) -> String { if num % 15 == 0 { return "fizzbuzz".to_string(); } else if num % 3 == 0 { return "fizz".to_string(); } else if num % 5 == 0 { return "buzz".to_string(); } else { return num.to_string(); } } /// # 词法作用域 /// /// Basic usage: /// /// ``` /// pub fn lexical_scope(){ /// let v = "hello world!"; /// assert_eq!(v, "hello world!"); /// let v = "hello Rust!"; /// assert_eq!(v, "hello Rust!"); /// { /// let v = "hello World!"; /// assert_eq!(v, "hello World!"); /// } /// assert_eq!(v, "hello Rust!"); /// } /// lexical_scope(); /// ``` pub fn lexical_scope(){ let v = "hello world!"; assert_eq!(v, "hello world!"); let v = "hello Rust!"; assert_eq!(v, "hello Rust!"); { let v = "hello World!"; assert_eq!(v, "hello World!"); } assert_eq!(v, "hello Rust!"); } /// # 函数指针: 函数作为参数 /// /// Basic usage: /// /// ``` /// pub fn math(op: fn(i32, i32) -> i32, a: i32, b: i32) -> i32{ /// op(a, b) /// } /// fn sum(a: i32, b: i32) -> i32 { /// a + b /// } /// fn product(a: i32, b: i32) -> i32 { /// a * b /// } /// /// let a = 2; /// let b = 3; /// assert_eq!(math(sum, a, b), 5); /// assert_eq!(math(product, a, b), 6); /// ``` pub fn math(op: fn(i32, i32) -> i32, a: i32, b: i32) -> i32{ op(a, b) } fn sum(a: i32, b: i32) -> i32 { a + b } fn product(a: i32, b: i32) -> i32 { a * b } fn is_true() -> bool { true } /// # 函数指针 : 函数作为返回值 /// /// Basic usage: /// /// ``` /// fn is_true() -> bool { true } /// fn true_maker() -> fn() -> bool { is_true } /// assert_eq!(true_maker()(), true); /// ``` pub fn true_maker() -> fn() -> bool { is_true } /// # CTFE: const fn /// /// Basic usage: /// /// ``` /// // #![feature(const_fn)] /// const fn init_len() -> usize { /// return 5; /// } /// [0; init_len()]; /// ``` pub const fn init_len() -> usize { return 5; } /// # 闭包 /// /// Basic usage: /// /// ``` /// pub fn closure(){ /// let out = 42; /// // 普通函数 /// // fn add(i: i32, j: i32) -> i32 { i + j + out} /// fn add(i: i32, j: i32) -> i32 { i + j } /// // 定义类型标注的闭包 /// let closure_annotated = |i: i32, j: i32| -> i32 { i + j + out}; /// // 如果没有类型标注则由编译器推断类型 /// let closure_inferred = |i, j| i + j + out; /// let i = 1; /// let j = 2; /// assert_eq!(3, add(i, j)); /// assert_eq!(45, closure_annotated(i, j)); /// assert_eq!(45, closure_inferred(i, j)); /// } /// closure(); /// ``` pub fn closure(){ let out = 42; // fn add(i: i32, j: i32) -> i32 { i + j + out} fn add(i: i32, j: i32) -> i32 { i + j } let closure_annotated = |i: i32, j: i32| -> i32 { i + j + out}; let closure_inferred = |i, j| i + j + out; let i = 1; let j = 2; assert_eq!(3, add(i, j)); assert_eq!(45, closure_annotated(i, j)); assert_eq!(45, closure_inferred(i, j)); } /// # 闭包: 作为参数 /// /// Basic usage: /// /// ``` /// pub fn math<F: Fn() -> i32>(op: F) -> i32 { /// op() /// } /// let a = 2; /// let b = 3; /// assert_eq!(math(|| a + b), 5); /// assert_eq!(math(|| a * b), 6); /// ``` pub fn closure_math<F: Fn() -> i32>(op: F) -> i32 { op() } /// # 闭包: 作为返回值(动态分发) /// /// Basic usage: /// /// ``` /// fn two_times() -> Box<Fn(i32) -> i32> { /// let i = 2; /// Box::new(move |j| j * i) /// } /// let result = two_times(); /// assert_eq!(result(2), 4); /// ``` pub fn two_times() -> Box<Fn(i32) -> i32> { let i = 2; Box::new(move |j| j * i) } /// # 闭包: 作为返回值(动态分发)Rust 2018 /// /// Basic usage: /// /// ``` /// fn two_times_dyn() -> Box<dyn Fn(i32) -> i32> { /// let i = 2; /// Box::new(move |j| j * i) /// } /// let result = two_times_dyn(); /// assert_eq!(result(2), 4); /// ``` pub fn two_times_dyn() -> Box<dyn Fn(i32) -> i32> { let i = 2; Box::new(move |j| j * i) } /// # 闭包: 作为返回值(静态分发) /// /// Basic usage: /// /// ``` /// fn two_times_impl() -> impl Fn(i32) -> i32{ /// let i = 2; /// move |j| j * i /// } /// let result = two_times_impl(); /// assert_eq!(result(2), 4); /// ``` pub fn two_times_impl() -> impl Fn(i32) -> i32 { let i = 2; move |j| j * i }