您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Write()與WriteLine()函數(shù)在C#中有什么不同,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
Write()和WriteLine()都是System.Console提供的方法,兩著主要用來(lái)將輸出流由指定的輸出裝置(默認(rèn)為屏幕)顯示出來(lái).
兩著間的差異在
Console.WriteLine()方法是將要輸出的字符串與換行控制字符一起輸出,當(dāng)次語(yǔ)句執(zhí)行完畢時(shí),光標(biāo)會(huì)移到目前輸出字符串的下一行.
至于Console.Write()方法,光標(biāo)會(huì)停在輸出字符串的最后一個(gè)字符后,不會(huì)移動(dòng)到下一行。
Write()和WriteLine()區(qū)別
都是System.Console提供的方法
都是在屏幕顯示
Write()顯示完畢后不換行,WriteLine()換行
代碼示例
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WriteLine和Write的區(qū)別 { class Program { static void Main(string[] args) { //WriteLine輸出后鼠標(biāo)顯示在下一行開(kāi)頭 //Write輸出后不開(kāi)始一個(gè)新行 System.Console.WriteLine("First WriteLine Line"); System.Console.WriteLine("Second WriteLine Line"); System.Console.Write("First Write Line");//First Write Line后面不開(kāi)始新的一行,直接緊跟著輸出Second Write Line System.Console.Write("Second Write Line"); //passing parameters System.Console.WriteLine("\nWriteLine:Parameter={0}", 123); System.Console.Write("Write:Parameter={0}", 456); System.Console.ReadKey(); } } }
輸出
First WriteLine Line
Second WriteLine Line
First Write LineSecond Write Line
WriteLine:Parameter=123
Write:Parameter=456
關(guān)于Write()與WriteLine()函數(shù)在C#中有什么不同就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。