我们在学习C#这门语言时,必须了解内置的C#关键字与标识符,它们构成了C#基础语法,熟悉C#关键字才能让我们正确的书写能被编译器识别的C#代码。
C# 是一种面向对象的编程语言。在面向对象的程序设计方法中,程序由各种相互交互的对象组成。因此C#语言中贯穿了class的概念,熟悉对象操作有助于我们学习C#语法。
C#关键字
关键字是 C# 编译器预定义的保留字,这些关键字不能用作标识符,但是,如果你想使用这些关键字作为标识符,可以在关键字前面加上 @ 字符作为前缀。
在 C# 中,有些标识符在代码的上下文中有特殊的意义,如 get 和 set,这些被称为上下文关键字(contextual keywords)。因此C#关键字分为保留关键字(Reserved Keywords)和上下文关键字(Contextual Keywords),下表是C#语言关键字大全,做成C#关键字一览表方便大家记忆。
保留关键字 |
||||||
abstract | as | base | bool | break | byte | case |
catch | char | checked | class | const | continue | decimal |
default | delegate | do | double | else | enum | event |
explicit | extern | false | finally | fixed | float | for |
foreach | goto | if | implicit | in | in (generic modifier) |
int |
interface | internal | is | lock | long | namespace | new |
null | object | operator | out | out (generic modifier) |
override | params |
private | protected | public | readonly | ref | return | sbyte |
sealed | short | sizeof | stackalloc | static | string | struct |
switch | this | throw | true | try | typeof | uint |
ulong | unchecked | unsafe | ushort | using | virtual | void |
volatile | while | |||||
上下文关键字 |
||||||
add | alias | ascending | descending | dynamic | from | get |
global | group | into | join | let | orderby | partial (type) |
partial (method) |
remove | select | set |
C#标识符
C#标识符是用来识别C#语言中类、变量、函数或任何其它用户定义的项目。在 C# 中,类的命名必须遵循如下基本规则:
- 标识符必须以字母开头,后面可以跟一系列的字母、数字( 0 – 9 )或下划线( _ )。标识符中的第一个字符不能是数字。
- 标识符必须不包含任何嵌入的空格或符号,比如 ? – +! @ # % ^ & * ( ) [ ] { } . ; : ” ‘ / /。但是,可以使用下划线( _ )。
- 标识符不能是 C# 关键字。
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/241299.html