Rust 程式設計視訊教程對應講解內容-函式

linghuyichong發表於2019-12-16

頭條地址:https://www.ixigua.com/i676544267458235648...
B站地址:https://www.bilibili.com/video/av78062009?...
網易雲課堂地址:https://study.163.com/course/introduction....

//1、rust中函式和變數名都使用snake case規範風格,否則會有一個警告
//rust不關注函式定義的位置,只要定義了就可以
fn another_fun() {
    println!("This is a function");
}

//2、函式引數
fn another_fun1(x: u32) {
    println!("x = {}", x);
}

fn another_fun2(x: u32, y:u32) {
    println!("x = {}, y = {}", x, y);
}

fn main() {
    another_fun();
    another_fun1(1);
    another_fun2(1, 2);

    //3、語句是執行一些操作,但不返回值的指令
    let y = 1;//這是一個語句,不返回值
    //let x = (let y = 1); //要報錯,因為語句不返回值

    //4、表示式會計算出一些值
    let y = {
        let x = 3;
        x + 1 //注意:不能加逗號
    };
    println!("y = {}", y);
    let y = add_two_pra(1, 2);
    println!("y = {}", y);
    println!("Hello, world!");
}

//5、帶返回值的函式
fn add_two_pra(x:u32, y:u32) ->u32 {
    x + y
    //x + y; //錯誤,返回值不能帶逗號
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結

令狐一衝

相關文章