行注释,文档注释,模块注释
Rust
代码文件中,通常我们可以看到 3 种注释。
//
后的,直到行尾,都属于注释,不会影响程序的行为。
// 创建一个绑定
let x = 5;
let y = 6; // 创建另一个绑定
文档注释使用 ///
,一般用于函数或结构体(字段)的说明,置于要说明的对象上方。文档注释内部可使用markdown格式的标记语法,可用于rustdoc
工具的自动文档提取。
/// Adds one to the number given.
///
/// # Examples
///
/// ```
/// let five = 5;
///
/// assert_eq!(6, add_one(5));
/// # fn add_one(x: i32) -> i32 {
/// # x + 1
/// # }
/// ```
fn add_one(x: i32) -> i32 {
x + 1
}
执行生成文档命令:
$ cargo doc --open
Documenting variables v0.1.0 (/projects/variables)
Finished dev [unoptimized + debuginfo] target(s) in 0.99s
projects/variables/target/doc/variables/index.html
--open
生成文档并打开,如果不加--open
文档会生成在target
文件夹。
模块注释使用 //!
,用于说明本模块的功能。一般置于模块文件的头部。
//! # The Rust Standard Library
//!
//! The Rust Standard Library provides the essential runtime
//! functionality for building portable Rust software.
相对于 ///
, //!
用来注释包含它的项(也就是说,crate
,模块或者函数),而不是位于它之后的项。
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!