当前位置: 首页 > 文档资料 > C# 中文指南 >

C# 基础 - 基本语法

优质
小牛编辑
138浏览
2023-12-01

C# 是一种面向对象的编程语言。在面向对象的程序设计方法中,程序由各种相互作用的对象组成。一个对象采取的动作称为方法。
相同种类的对象通常具有相同的属性,或者说,是在相同的类中。

例如,以 Rectangle(矩形)对象为例。它具有 length 和 width 属性。
根据设计,它可能需要接受这些属性值、计算面积和显示细节的方法。

让我们来看看一个 Rectangle(矩形)类的实现,并借此讨论 C# 的基本语法:

  1. using System;
  2. namespace RectangleApplication
  3. {
  4. class Rectangle
  5. {
  6. // member variables
  7. double length;
  8. double width;
  9. public void Acceptdetails()
  10. {
  11. length = 4.5;
  12. width = 3.5;
  13. }
  14. public double GetArea()
  15. {
  16. return length * width;
  17. }
  18. public void Display()
  19. {
  20. Console.WriteLine("Length: {0}", length);
  21. Console.WriteLine("Width: {0}", width);
  22. Console.WriteLine("Area: {0}", GetArea());
  23. }
  24. }
  25. class ExecuteRectangle
  26. {
  27. static void Main(string[] args)
  28. {
  29. Rectangle r = new Rectangle();
  30. r.Acceptdetails();
  31. r.Display();
  32. Console.ReadLine();
  33. }
  34. }
  35. }

编译执行上述代码,得到如下结果:

  1. Length: 4.5
  2. Width: 3.5
  3. Area: 15.75

using 关键字

在任何 C# 程序中的第一条语句都是:

  1. using System;

using 关键字用于在程序中包含命名空间。一个程序可以包含多个 using 语句。

class 关键字

class 关键字用于声明一个类。

C# 中的注释

注释用于解释代码。编译器会忽略注释的部分。在 C# 程序中,多行注释以 /* 开始,并以字符 */ 终止,如下所示:

  1. /* This program demonstrates
  2. The basic syntax of C# programming
  3. Language */

单行注释是用 ‘//‘ 符号表示。例如:

  1. }//end class Rectangle

成员变量

变量是一个类的属性或数据成员,用于存储数据。在上面的程序中,Rectangle 类有两个成员变量,名为 lengthwidth

成员函数

函数是一系列执行特定任务的语句。类的成员函数是在类内声明的。我们举例的类 Rectangle 包含了三个成员函数: AcceptDetailsGetAreaDisplay

实例化一个类

在上面的程序中,类 ExecuteRectangle 是一个包含 Main() 方法和实例化 Rectangle 类的类。

标识符

标识符是用来识别类、变量、函数或任何其它用户定义的项目。在 C# 中,类的命名必须遵循如下基本规则:

  • 标识符必须以字母开头,后面可以跟一系列的字母、数字(0 - 9)或下划线(_)。标识符中的第一个字符不能是数字。
  • 标识符必须不包含任何嵌入的空格或符号,比如 ? - + ! @ # % ^ & * ( ) [ ] { } . ; : “ ‘ / \。但是,可以使用下划线(_)。
  • 标识符不能是 C# 关键字。

C# 关键字

关键字是 C# 编译器预定义的保留字。这些关键字不能用作标识符,但是,如果您想使用这些关键字作为标识符,可以在关键字前面加上 @ 字符作为前缀。

在 C# 中,有些标识符在代码的上下文中有特殊的意义,如 get 和 set,这些被称为上下文关键字。

下表列出了 C# 中的保留关键字(Reserved Keywords)和上下文关键字(Contextual Keywords):

保留关键字
abstractasbaseboolbreakbytecase
catchcharcheckedclassconstcontinuedecimal
defaultdelegatedodoubleelseenumevent
explicitexternfalsefinallyfixedfloatfor
foreachgotoifimplicitinin (generic modifier)int
interfaceinternalislocklongnamespacenew
nullobjectoperatoroutout (generic modifier)overrideparams
privateprotectedpublicreadonlyrefreturnsbyte
sealedshortsizeofstackallocstaticstringstruct
switchthisthrowtruetrytypeofuint
ulonguncheckedunsafeushortusingvirtualvoid
volatilewhile
上下文关键字
addaliasascendingdescendingdynamicfromget
globalgroupintojoinletorderbypartial (type)
partial(method)removeselectset