std::env::args

Function std::env::args

pub fn args() -> Args

Returns the arguments which this program was started with (normally passed via the command line).

The first element is traditionally the path of the executable, but it can be set to arbitrary text, and may not even exist. This means this property should not be relied upon for security purposes.

Panics

The returned iterator will panic during iteration if any argument to the process is not valid unicode. If this is not desired, use the args_os function instead.

Examples

use std::env;

// Prints each argument on a separate line
for argument in env::args() {
    println!("{}", argument);
}

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/env/fn.args.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部