分享

String.Format 的使用好处

 zww_blog 2012-05-31

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);//在{}需要指定参数的顺序

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多