c# print打印格式化

avatar
作者
筋斗云
阅读量:0

在C#中,可以使用Console.WriteLine()方法来打印输出,并且可以使用字符串格式化来控制输出的格式。

字符串格式化可以使用以下几种方式:

  1. 使用+运算符将字符串和其他数据类型连接起来。例如:
int age = 25; Console.WriteLine("I am " + age + " years old."); 
  1. 使用string.Format()方法来格式化字符串。例如:
int age = 25; Console.WriteLine("I am {0} years old.", age); 

在上面的例子中,{0}是一个占位符,代表第一个参数age的值。

  1. 使用string.Format()方法的另一种语法是使用括号将参数括起来。例如:
int age = 25; Console.WriteLine("I am {0} years old.", (object)age); 

在上面的例子中,我们将age强制转换为object类型,以便将其作为参数传递给string.Format()方法。

  1. 使用Console.WriteLine()方法的另一个重载版本,该版本接受一个params参数,可以在调用时传递任意数量的参数。例如:
int age = 25; Console.WriteLine("I am {0} years old. My favorite color is {1}.", age, "blue"); 

在上面的例子中,我们传递了两个参数agecolor,它们将分别替换字符串中的占位符{0}{1}

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!