本文简要介绍rust语言中 Function std::env::args
的用法。
用法
pub fn args() -> Args
返回此程序启动时使用的参数(通常通过命令行传递)。
第一个元素通常是可执行文件的路径,但它可以设置为任意文本,甚至可能不存在。这意味着不应出于安全目的依赖此属性。
在 Unix 系统上,shell 通常使用 glob 模式扩展不带引号的参数(例如 *
和 ?
)。在 Windows 上,这并没有完成,并且此类参数按原样传递。
在 glibc Linux 系统上,通过在 .init_array
中放置一个函数来检索参数。 glibc 将 argc
、 argv
和 envp
作为非标准扩展传递给 .init_array
中的函数。这使得 std::env::args
甚至可以在 cdylib
或 staticlib
中工作,就像在 macOS 和 Windows 上一样。
Panics
如果进程的任何参数不是有效的 Unicode,则返回的迭代器将在迭代期间发生Panics。如果不需要,请改用 args_os
函数。
例子
use std::env;
// Prints each argument on a separate line
for argument in env::args() {
println!("{}", argument);
}
相关用法
- Rust args_os用法及代码示例
- Rust array.map用法及代码示例
- Rust array.split_array_ref用法及代码示例
- Rust array用法及代码示例
- Rust array.zip用法及代码示例
- Rust array.split_array_mut用法及代码示例
- Rust array.each_mut用法及代码示例
- Rust array.each_ref用法及代码示例
- Rust assert_ne用法及代码示例
- Rust assert_matches用法及代码示例
- Rust addr_of_mut用法及代码示例
- Rust alloc_zeroed用法及代码示例
- Rust align_of用法及代码示例
- Rust always_abort用法及代码示例
- Rust assert_eq用法及代码示例
- Rust available_parallelism用法及代码示例
- Rust addr_of用法及代码示例
- Rust abort用法及代码示例
- Rust align_of_val用法及代码示例
- Rust assert用法及代码示例
- Rust alloc用法及代码示例
- Rust align_of_val_raw用法及代码示例
- Rust UdpSocket.set_multicast_loop_v6用法及代码示例
- Rust i64.overflowing_add_unsigned用法及代码示例
- Rust Box.downcast用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::env::args。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。