4.6 Rust 注释介绍

 

 

// 这是第一种注释方式
/* 这是第二种注释方式 */
/* 

 * 多行注释

 * 多行注释

 * 多行注释

 */



文档注释

/// Adds one to the number given. 
/// 
/// # Examples 
/// 
/// ``` 
/// let x = add(1, 2); 
/// 
/// ``` 
fn add(a: i32, b: i32) -> i32 {
    return a + b;
}
    

fn main() {
    println!("{}",add(2,3));
}

 

posted @ 2022-06-14 12:58  方诚  阅读(26)  评论(0编辑  收藏  举报