当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust stderr用法及代码示例


本文简要介绍rust语言中 Function std::io::stderr 的用法。

用法

pub fn stderr() -> Stderr

为当前进程的标准错误构造一个新句柄。

此句柄未缓冲。

注意:Windows 可移植性考虑

在控制台中操作时,此流的 Windows 实现不支持非 UTF-8 字节序列。尝试写入无效的 UTF-8 字节将返回错误。

例子

使用隐式同步:

use std::io::{self, Write};

fn main() -> io::Result<()> {
    io::stderr().write_all(b"hello world")?;

    Ok(())
}

使用显式同步:

use std::io::{self, Write};

fn main() -> io::Result<()> {
    let stderr = io::stderr();
    let mut handle = stderr.lock();

    handle.write_all(b"hello world")?;

    Ok(())
}

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::io::stderr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。