C#中善用String.Format的好处

1.可读性比连加好看

如:string str = "select * from "+ strTable +" where name="+strValue; 而用Format string.Format("select * from {0} where name='{1}'",strTable ,strValue); 在检查SQL 错误时,容易差错特别是出现"'',%"这样的符号

 

2.格式化的时候不需要指定是什么数据类型

int nID = 1; string str = "select * from "+ strTable +" where ID ="+nID.ToString();//nID需要转化成string string.Format("select * from {0} where ID={1}",strTable ,nID);//nID在这里不需要转换

 

3.比C++格式化方式更灵活

当字符串出现相同的字符时,需要都列出来.如 C++ str.Format(" %0.3f ABCDEF %d %0.3f", d,A,d);//参数根据 %的顺序而定 C# string.Format(" {0} ABCDEF {1} {0}", d,A);//在{}需要指定参数的顺序

转载于:https://www.cnblogs.com/simonwonn/archive/2012/11/27/2791403.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值