C#中Console.WriteLine()和Format()方法的异同?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中Console.WriteLine()和Format()方法的异同?相关的知识,希望对你有一定的参考价值。
Console.WriteLine使用占位符、参数列表
stinr.Format("格式字符串",参数列表)
是一样的吧
Console.WriteLine()是格式化输出时用
String类下有一个Format方法,该方法是格式化字符串的
在以上两种格式化方式中,都需要用到占位符和参数列表
例:
<1>Console.WriteLine("0,1",name,score.ToString());
<2>String s = String.Format("0,1",name,score.ToString());
Console.WriteLine(s);
以上<1>和<2>效果是相同的
其中
String.Format()方法在利用C#开发数据库应用程序时,书写SQL语句时,非常重
要。
注:
C#规定,占位符中的序号必须是基于0的(ZERO_BASED),也就是说必须是从0开
始。
祝你学业有成!
By 【Hamber_Bao】
参考资料:个人经验
参考技术A 嗯,既然是俩个方法,是有不同之处的,Console.WriteLine()方法:可以不使用占位符,直接输出字符串,如果有参数列表,占位符的下标是从0开始的。
Format();需要参数列表,
似乎不一样哦! 参考技术B Console.WriteLine使用占位符、参数列表 - 是按格式输出。格式化过程其实是调用sting.Format("格式字符串",参数列表)
sting.Format("格式字符串",参数列表) - 格式化字符串,返回的是字符串。
以上是关于C#中Console.WriteLine()和Format()方法的异同?的主要内容,如果未能解决你的问题,请参考以下文章
C#中Console.WriteLine与Response.Write有啥区别
使用 Console.Writeline() 或 Console.Write() 时,多线程 C# 控制台应用程序中不经常挂起
C#中怎么知道都有哪些方法可用,像Console.WriteLine,在我不知道Console有WriteLine方法时怎么办?