C#中static void Main(string[] args)的含義

來源:互聯網
上載者:User

標籤:c#

C#中static void Main(string[] args)的含義
  • static:是將main方法聲明為靜態。 
  • void:說明main方法不會返回任何內容。 
  • String[]args:這是用來接收命令列傳入的參數,String[]是聲明args是可以儲存字串數組。
        運行時會彈出命令視窗,你可以在那裡輸入一些參數,string[] args 指的就是你在命令視窗輸入的參數。 也就是命令列參數。        args是用來處理命令列參數的。命令列參數,就是你運行這個程式的時候給它傳的參數。它是可選項,不是必須的。        通過以下的例子說明:1. 建立控制台程式MainArgs。
2. 編寫代碼。
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace MainArgs{    class Program    {        static void Main(string[] args)        {            int argsLength = args.Length;            Console.WriteLine("Main函數參數args的長度:" + argsLength.ToString());            for (int i = 0; i < argsLength; i++)            {                Console.Write("第" + i.ToString() + "位是:");                Console.WriteLine(args[i].ToString());            }            Console.ReadLine();        }    }}
3. 按下F5編譯運行,產生MainArgs.exe檔案。4. 開啟命令列,輸入路徑+MainArgs a b c d,Enter查看結果。

C#中static void Main(string[] args)的含義

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.