ostream之cout

#include<iostream>
#include<cstring>
#include<fstream>//文件流
#include<sstream>//字符串流

using namespace std;

class Time
{
public:
	Time(int year, int mon, int day, int hour, int min, int sec)
		:_year(year), _mon(mon), _day(day), _hour(hour), _min(min), _sec(sec)
	{
	}

	friend void outTime(ostream &, const Time &);
private:
	int _year;
	int _mon;
	int _day;
	int _hour;
	int _min;
	int _sec;
};

void outTime(ostream &os, const Time &tm)
{
	os << dec << right;
	os << tm._year << '.';

	os.width(2);
	os.fill('0');
	os << tm._mon << '.';

	os.width(2);
	os.fill('0');
	os << tm._day << '\t';

	os.width(2);
	os.fill('0');
	os << tm._hour << ':';

	os.width(2);
	os.fill('0');
	os << tm._min << ':';

	os.width(2);
	os.fill('0');
	os << tm._sec << endl;
}

void main()
{
	cout.put('a');
	char buf[] = "blank ! \n";
	cout.write(buf, strlen(buf));

	cout.width(10);
	cout.fill('$');
	cout << 222 << endl;
	cout << "b";

	cout.setf(ios::hex, ios::basefield);
	cout << hex << left << 66 << endl;
	cout << boolalpha << true << endl;

	outTime(cout, Time(2013, 10, 5, 6, 2, 10));


	fstream fs;
	fs.open("time.txt", ios::out);
	outTime(fs, Time(2013, 4, 5, 6, 7, 8));
	fs.close();

	stringstream strs;  //会以空白字符作为截断
	outTime(strs, Time(2013, 4, 5, 6, 7, 8));
	string str;
	strs >> str;
	cout << str;//输出第一部分2013:04:05
	cout << "------------";
	strs >> str;
	cout << str;//输出第二部分06:07:08

	cout << endl;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值