CString、std::string格式化字符串

=============================CString==================================

 当有多个字串时,比如  
  int   n1   =   5;  
  int   n2   =   10;  
  char   sz1[]   =   "abcdefg";  
  char   sz2[]   =   "hijklmn";  
   
  用std中的string如何写出最简单的代码得到MFC中CString如下效果:  
   
  CString   s;  
  s.Format("   result:   %d   +   %d   =   %d/n   sz1:   %s/n   sz2:   %s/n",   n1,   n2,   n1+n2,   sz1,   sz2   );  

===========================std::string==================================

int   n1   =   5;   
int   n2   =   10;   
char   sz1[]   =   "abcdefg";   
char   sz2[]   =   "hijklmn";          
          std::ostringstream   ostr;   //   include   <sstream>  
          ostr   <<   "result:"   <<   n1   <<   "+"   <<   n2   <<   "="   <<   n1+n2    
                    <<   "/nsz1:"   <<   sz1  
                    <<   "/nsz2:"   <<   sz2;  
          //std::cout   <<   ostr.str().c_str()   <<   std::endl;

std::string s = ostr.str();

 

 

附加说明

在C++有两种  
  一个是在<sstream>另一个是<strstream>它们实现的东西基本一样,   区别是前者为前标准.  
  而前标准里ostringstream::str()是返回std::string的.  
   
  <strstream>包含  
    class   strstreambuf;  
    class   istrstream;  
    class   ostrstream;  
    class   strstream;  
  它们是基于char*编写的  
   
  <sstream>  
  class   istringstream;  
  class   ostreamstream;  
  class   stringbuf;  
  class   stringstream;  
  class   ...  
  ....  
  它们是基于std::string编写的.  

 

===============char * 有sprintf====================

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值