gpt4 book ai didi

c# - C# 字符串中的大括号是什么意思?

转载 作者:太空狗 更新时间:2023-10-29 17:31:17 27 4
gpt4 key购买 nike

while (rdr.Read())
{
Console.WriteLine("Product: {0,-35} Total: {1,2}", rdr["ProductName"], rdr["Total"]);
}

这段代码中的 {0,-35} 是什么意思?

最佳答案

一个更简单的行是:

Console.WriteLine("{0}", 5);

该函数接受任意数量的参数。它们将被插入到相应索引处的字符串中。在这种情况下,索引零包含整数 5。结果是字符串“5”。

现在,您可以选择指定格式字符串和索引。像这样:

Console.WriteLine("{0:0.00}", 5);

这会将 5 格式化为 0.00,结果为 5.00

数字就是这种情况,但我认为这些更容易解释。对于字符串,“格式”意味着对齐。另请注意,您使用逗号而不是冒号来分隔索引和格式。

alignment (optional): This represent the minimal length of the string. Postive values, the string argument will be right justified and if the string is not long enough, the string will be padded with spaces on the left. Negative values, the string argument will be left justied and if the string is not long enough, the string will be padded with spaces on the right. If this value was not specified, we will default to the length of the string argument.

所以在你的例子中:

  • {0,-35} 表示字符串必须至少为 35 个字符,左对齐(末尾有空格填充)。
  • {1,2} 表示字符串必须至少有 2 个字符,右对齐(前面有空格填充)。

我推荐this article ,以及 string.Format documentation .

关于c# - C# 字符串中的大括号是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9769356/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com