在C#中,可以使用Console.WriteLine()
方法來打印輸出,并且可以使用字符串格式化來控制輸出的格式。
字符串格式化可以使用以下幾種方式:
+
運算符將字符串和其他數據類型連接起來。例如:int age = 25;
Console.WriteLine("I am " + age + " years old.");
string.Format()
方法來格式化字符串。例如:int age = 25;
Console.WriteLine("I am {0} years old.", age);
在上面的例子中,{0}
是一個占位符,代表第一個參數age
的值。
string.Format()
方法的另一種語法是使用括號將參數括起來。例如:int age = 25;
Console.WriteLine("I am {0} years old.", (object)age);
在上面的例子中,我們將age
強制轉換為object
類型,以便將其作為參數傳遞給string.Format()
方法。
Console.WriteLine()
方法的另一個重載版本,該版本接受一個params
參數,可以在調用時傳遞任意數量的參數。例如:int age = 25;
Console.WriteLine("I am {0} years old. My favorite color is {1}.", age, "blue");
在上面的例子中,我們傳遞了兩個參數age
和color
,它們將分別替換字符串中的占位符{0}
和{1}
。