码迷,mamicode.com
首页 > 其他好文 > 详细

自定义输出流状态

时间:2015-04-11 13:23:15      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:c++   iostream   ostream   

一般,要想改变流对下一个对象的输出方式,需要使用manipulator,如:setw, setfill等。通过定义functor,用户可以很容易定义自己的manipulator。但是如果想要添加流状态(类似于对流中存储的整数的输出进制),却不那么容易,需要使用xalloc, pword, iword等。


假设现在需要输出一些变量。因为存储字符串代价比较高,通常会用整数关键字来代表它们。这样在输出的时候需要进行转化,将整数对应的字符串输出。如果对变量的输出出现在多个地方,那么在输出的时候不一定可以访问存储变量名的表。显然,可以通过将表存为全局变量来解决这一问题。


下面通过名为ios_state.h的头文件(见最后)提供问题的另一种解决方案


#include <ios_state.h>
#include <vector>
#include <string>
#include <iostream>

namespace custom {
	using table_t = std::vector<std::string>;

	IOS_STATE_FORMAT(table_t, set_table, clear_table)

	struct var_wrapper {
		int var;
	};

	std::ostream& operator<<(std::ostream& ostr, var_wrapper const var) {
		return ostr << ios_state::get_data<table_t>(ostr)[var.var];
	}
}

void print() {
	using namespace custom;
	std::cout << var_wrapper{ 0 } << " "
		<< var_wrapper{ 1 } << " "
		<< var_wrapper{ 2 } << "\n";
}

int main() {
	custom::table_t table{ "a", "b", "c" };
	
	try {
		std::cout << custom::set_table(table);
		print();
		std::cout << custom::clear_table();
		print();
	}
	catch (std::runtime_error const &err) {
		std::cerr << err.what() << "\n";
	}

	return 0;
}

技术分享


下面是ios_state.h的代码


自定义输出流状态

标签:c++   iostream   ostream   

原文地址:http://blog.csdn.net/cqdjyy01234/article/details/44981705

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!