c++ 文件读写 格式操作的问题

voidmake_neat(ifstream&messy_file,ofstream&neat_file,intnumber_after_decimalpoint,int... void make_neat(ifstream& messy_file, ofstream& neat_file,
int number_after_decimalpoint, int field_width); // must be called by reference;
{
neat_file.setf(ios::fixed);
neat_file.setf(ios::showpoint);
neat_file.setf(ios::showpos);
neat_file.precision(number_after_decimalpoint);
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.setf(ios::showpos);
cout.precision(number_after_decimalpoint);

double next;
while(messy_file >> next)
{
cout << setw(field_width) << next << endl;
neat_file << setw(field_width) << next << endl;

}

}

这是一个将a文件中的数字,用工整的格式写入b文件的函数。 我想请问其中

nea t_file.setf(ios::fixed);
neat_file.setf(ios::showpoint);
neat_file.setf(ios::showpos);
neat_file.precision(number_after_decimalpoint);
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.setf(ios::showpos);
cout.precision(number_after_decimalpoint);
这几行代码的意思,cout是怎么出来的,为什么都要现有ios::fixed?方便的话请解释下每行的意义。。。谢谢啦
展开
 我来答
White_MouseYBZ
2017-02-28 · TA获得超过4万个赞
知道大有可为答主
回答量:2.1万
采纳率:82%
帮助的人:6690万
展开全部
setf(ios::fixed); ——用定点格式显示浮点数
setf(ios::showpoint);——显示小数点和小数点后的无效0
setf(ios::showpos);——显示正数前面的+号
precision(number_after_decimalpoint);——设置精度并返回上次的精度设置
前4个是作用于文件nea t_file,后4个作用于屏幕。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式