Skip to content

Latest commit

 

History

History
executable file
·
27 lines (20 loc) · 843 Bytes

dev_null使用.md

File metadata and controls

executable file
·
27 lines (20 loc) · 843 Bytes
title date categories tags hidden
/dev/null使用
2022-05-03 05:30:12 -0700
语言
cpp
cpp
true

参考网址:

(130条消息) 关于/dev/null及用途(Linux黑洞)_RayPick的博客-CSDN博客_dev/null

简介

用来当作垃圾站,不用的东西扔进去,可以用来清理文件内容.

简单实例

static std:: ofstream dummy_ostream("/dev/null",std::iso::out);
std::ofstream& Logger::operator[](const std::string& name)
	return (m_logs.find(name) == m_logs.end()) ? dummy_ostream : m_logs[names];