溫馨提示×

C#中printf函數(shù)的字符串輸出技巧

c#
小樊
136
2024-08-13 07:13:38
欄目: 編程語言

在C#中,可以使用Console.WriteLine方法來實現(xiàn)字符串的輸出,類似于C語言中的printf函數(shù)。下面是一些字符串輸出的技巧:

  1. 使用占位符:可以在字符串中使用占位符來代表后續(xù)參數(shù)的值,例如:
int num = 10;
string str = "Hello";
Console.WriteLine("num = {0}, str = {1}", num, str);
  1. 格式化字符串:可以使用格式化字符串來控制輸出的格式,例如:
double num = 3.14159;
Console.WriteLine("num = {0:F2}", num); // 輸出num = 3.14
  1. 拼接字符串:可以使用加號來拼接多個字符串,例如:
string str1 = "Hello";
string str2 = "World";
Console.WriteLine(str1 + " " + str2); // 輸出Hello World
  1. 使用插值表達式:可以使用插值表達式$來直接在字符串中引用變量,例如:
int age = 20;
Console.WriteLine($"My age is {age}"); // 輸出My age is 20

這些技巧可以幫助你更靈活地處理字符串輸出,在C#中實現(xiàn)類似于printf函數(shù)的功能。

0