C#Main函数概念以及应用祥解

C# Main函数的概念是什么呢?C# Main()是C#应用程序的入口点,执行这个函数就是执行应用程序。也就是说,在执行过程开始时,会执行Main()函数,在Main()函数执行完毕时,执行过程就结束了。

C# Main函数的四种情况:

 
 
 
 
  1. static void Main()  
  2. {  
  3.  }  
  4. static int Main()  
  5. {  
  6.  }  
  7. static void Main(string[] args)  
  8. {  
  9.  }  
  10.  static int Main(string[] args)  
  11.  {  
  12.   } 

1.主程序Main函数一共有以上四种版

2.一个程序中不能有两个以上的Main函数,有且只有一个

3.Main函数只能返回int类型,如果返回1,则从命令行调用不成功。否则成功

4.在命令行传输参数时,存放在string数组args中。使用Length属性来测试输入参数的个数。

5.使用foreach语句来检索所有的参数
 
6.程序入口主要供其他程序来执行本程序功能
 
C# Main函数实例:

 
 
 
 
  1.  //Main() 和命令行参数  
  2.  
  3. /*以检举数组中所有元素访问信息  
  4.    for each (string str int args(  
  5.  Console.WriteLine(str);*/ 
  6. using System;  
  7. using System.Collections.Generic;  
  8. using System.Text;  
  9.  
  10. namespace HelloWorld  
  11. {  
  12. class Program  
  13. {  
  14. public static long getx(int x)     
  15. //阶乘 (注:使用Static定义的方法不用实例化就能使用)  
  16. {  
  17. long y = 1;  
  18. for (int i = 2; i<=x; i++)  
  19. {  
  20. y =y * i;  
  21. }  
  22. return y;  
  23. }  
  24. public static long gety(int x)   //阶加  
  25. {  
  26. long y = 0;  
  27. for (int i = 1; i <= x; i++)  
  28. {  
  29. y += i;  
  30. }  
  31. return y;  
  32. }  
  33. static int Main(string[] args)  
  34. {  
  35. if (args.Length != 1)     
  36. //测试args[]数组的长度 ------即是输入的命令行的参数是多少  
  37. {  
  38. Console.WriteLine("程序使用说明:输入一个整数来算出其的阶乘.");  
  39. Console.WriteLine(" 输入一个整数来算出其的阶加.");  
  40. }  
  41. else if (Convert.ToInt32(args[0]) < 1 )  
  42. {  
  43. Console.WriteLine("输入参数不能小于1");  
  44. }  
  45. else 
  46. {  
  47. int x; long y,z;  
  48. try 
  49. {  
  50. x = Convert.ToInt32(args[0]);  
  51. y = getx(x);  
  52. z = gety(x);  
  53. Console.WriteLine(x + "的阶乘为: " + y);  
  54. Console.WriteLine(x + "的阶加为: " + z);  
  55. return 1;  //返回1表示调用程序成功执行  
  56. }  
  57. catch(Exception ex)  
  58. {  
  59. Console.WriteLine(ex.ToString());  
  60. }  
  61. }  
  62. }  
  63. }  
  64. }  

C# Main函数实例执行结果

C# Main函数的概念和实例的基本内容就向你介绍到这里,希望对你了解和学习C# Main函数有所帮助。

本文题目:C#Main函数概念以及应用祥解
链接分享:http://www.shufengxianlan.com/qtweb/news25/468425.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联