隨風設計

          隨風設計

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            11 隨筆 :: 0 文章 :: 0 評論 :: 0 Trackbacks

          本教程展示如何訪問命令行以及訪問命令行參數數組的兩種方法。
          教程
              下面的示例展示使用傳遞給應用程序的命令行參數的兩種不同方法。

          示例 1
              本示例演示如何輸出命令行參數。
              // cmdline1.cs
              // arguments: A B C
              using System;

              public class CommandLine
              {
                 public static void Main(string[] args)
                 {
                    // The Length property is used to obtain the length of the array.
                    // Notice that Length is a read-only property:
                    Console.WriteLine("Number of command line parameters = {0}",
                       args.Length);
                    for(int i = 0; i < args.Length; i++)
                    {
                       Console.WriteLine("Arg[{0}] = [{1}]", i, args[i]);
                    }
                 }
              }
          輸出
              使用如下所示的一些參數運行程序:cmdline1 A B C。
               輸出將為:
              Number of command line parameters = 3
              Arg[0] = [A]
              Arg[1] = [B]
              Arg[2] = [C]
          示例 2
              循環訪問數組的另一種方法是使用 foreach 語句,如本示例所示。foreach 語句可用于循環訪問數組或“.NET Framework”集合類。它提供了一種簡單的方法來循環訪問集合。
              // cmdline2.cs
              // arguments: John Paul Mary
              using System;

              public class CommandLine2
              {
                 public static void Main(string[] args)
                 {
                    Console.WriteLine("Number of command line parameters = {0}",
                       args.Length);
                    foreach(string s in args)
                    {
                       Console.WriteLine(s);
                    }
                  }
               }
          輸出
              使用如下所示的一些參數運行程序:cmdline2 John Paul Mary。

              輸出將為:
              Number of command line parameters = 3
              John
              Paul
              Mary

          posted on 2006-08-17 11:27 曹賢 閱讀(284) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 武强县| 克拉玛依市| 郴州市| 维西| 惠安县| 龙陵县| 平和县| 巴中市| 宁蒗| 五大连池市| 施秉县| 黔江区| 密云县| 阳高县| 苏州市| 葫芦岛市| 泰和县| 吉林市| 东辽县| 玉田县| 繁峙县| 邻水| 阳江市| 洪泽县| 故城县| 巴南区| 扬中市| 江孜县| 惠安县| 吉木萨尔县| 图木舒克市| 西城区| 西平县| 麟游县| 将乐县| 德庆县| 城市| 密云县| 太仓市| 连江县| 黄浦区|