C#语法基础03_格式化输出

C#语法基础03_格式化输出

占位符 格式化输出 格式化数字输出表格


占位符

{<index>} // eg:{0} {1} {2}

例子

class Program
    {
        static void Main(string[] args)
        {

            string nameCat = "Tom";
            string nameMouse = "Jerry";
            Console.WriteLine("Hello {0} and {1}",nameCat,nameMouse );
        }
    }
// Hello Tom and Jerry
// 

格式化输出

以例子来看

class Program
    {
        static void Main(string[] args)
        {
            double _Area = 676.454;
            Console.WriteLine("Area is {0,-9:F2}", _Area);
        }
    }
// Area is 676.45
// 
  1. 格式化输出的占位符为{0,-9:F2},以:将大括号分为两部分,

  2. :左边是输出内容位置的格式化设置,

    其中0表示是第0号占位符(索引值从零开始),9表示该项输出占9位,-表示左对齐(无-则是右对齐);

  3. :右边是输出内容数值类型的格式化设置,

    其中F表示以浮点类型输出,,2表示小数点后保留两位。

格式化数字输出表格


posted on 2021-04-06 00:04  摸鱼time  阅读(241)  评论(0编辑  收藏  举报