格式化输出与宏定义的一个例子

本文通过一个具体的C++程序示例介绍了如何使用宏定义和文件流来监视程序执行过程中的输出格式变化,包括整数、浮点数的显示格式及字符串的对齐方式等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include<fstream> #include<iostream> using namespace std; #define D(A) T<<#A<<endl; A int main() { ofstream T("format.out"); D(int i=47;) D(float f=2300114.232343;) const char *s="Is there any more?"; D(T.setf(ios::unitbuf);) D(T.setf(ios::showbase);) D(T.setf(ios::uppercase|ios::showpos);) D(T<<i<<endl;) D(T.unsetf(ios::showbase);) D(T.setf(ios::dec,ios::basefield);) D(T.setf(ios::left,ios::adjustfield);) D(T.fill('0');) D(T<<"fill char "<<T.fill()<<endl;) D(T.width(10);) T<<i<<endl; D(T<<i<<endl;) D(T.unsetf(ios::showpos);) D(T.setf(ios::showpoint);) D(T<<"prec ="<<T.precision()<<endl;) D(T.setf(ios::scientific,ios::floatfield);) D(T<<endl<<f<<endl;) D(T.setf(ios::fixed,ios::floatfield);) D(T<<f<<endl;) D(T.precision(20);) D(T<<"prec ="<<T.precision()<<endl;) D(T<<endl<<f<<endl;) D(T.setf(ios::fixed,ios::floatfield);) D(T<<f<<endl;) D(T.width(10);) T<<s<<endl; D(T.width(40);) T<<s<<endl; D(T.setf(ios::left,ios::adjustfield);) D(T.width(40);) T<<s<<endl; return 0; }


这个例子中用到了一个技巧来创建一个跟踪文件,以监视程序执行时发生了什么事。宏定义D(A)用预处理器把A转化为字符串并输出。然后对A进行重复迭代,所以语句顺序执行。宏把所以信息输出到跟踪文件T.

文件"format.out"中的内容如下:

int i=47; float f=2300114.232343; T.setf(ios::unitbuf); T.setf(ios::showbase); T.setf(ios::uppercase|ios::showpos); T<<i<<endl; +47 T.unsetf(ios::showbase); T.setf(ios::dec,ios::basefield); T.setf(ios::left,ios::adjustfield); T.fill('0'); T<<"fill char "<<T.fill()<<endl; fill char 0 T.width(10); +470000000 T<<i<<endl; +47 T.unsetf(ios::showpos); T.setf(ios::showpoint); T<<"prec ="<<T.precision()<<endl; prec =6 T.setf(ios::scientific,ios::floatfield); T<<endl<<f<<endl; 2.300114E+006 T.setf(ios::fixed,ios::floatfield); T<<f<<endl; 2300114.250000 T.precision(20); T<<"prec ="<<T.precision()<<endl; prec =20 T<<endl<<f<<endl; 2300114.25000000000000000000 T.setf(ios::fixed,ios::floatfield); T<<f<<endl; 2300114.25000000000000000000 T.width(10); Is there any more? T.width(40); Is there any more?0000000000000000000000 T.setf(ios::left,ios::adjustfield); T.width(40); Is there any more?0000000000000000000000


——摘自Thinking in C++ Volume Two

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值