标题:请问问,(.fill与.width到底是什么意思啊?)
只看楼主
augustchow
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2006-6-5
 问题点数:0 回复次数:0 
请问问,(.fill与.width到底是什么意思啊?)

class Tclock
{
private:
int minute,second;
public:
Tclock(int m=0,int s=0);
void init(int m,int s)
{
minute = m;
second = s;
}
void update();
void display();
};

Tclock::Tclock(int m,int s)
{
minute=(m>=0&&m<60)?m:0;
second=(s>=0&&s<60)?s:0;
};

void Tclock::update()
{
second++;
if(second==60)
{
second=0;
minute++;
if(minute==60) minute=0;
}
};
void Tclock::display()
{


cout.width(2);
cout.fill('0'); 这个.fill是什么意思啊?
cout<<minute<<":";
cout.width(2); 这个.width又是什么意思啊?
cout.fill('0');
cout<<second<<endl;
//cout<<minute<<second<<endl;
};

搜索更多相关主题的帖子: fill 
2006-06-05 17:52



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-69925-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.429335 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved