赞
踩
预处理器指令实现编译器在编译开始前对信息进行预处理。所有的预处理器指令都是以#
开始。预处理器指令不是语句,所以它们不以分号结束。
与 C/C++ 不同的是,C#中的预处理指令不是用来创建宏的。一个预处理器指令必须是该行上的唯一指令。
C# 中可用的预处理器指令如下:
预处理器指令 | 描述 |
---|---|
#define | 它用于定义一系列成为符号的字符。 |
#undef | 它用于取消定义符号。 |
#if | 它用于测试符号是否为真。 |
#else | 它用于创建复合条件指令,与 #if 一起使用。 |
#elif | 它用于创建复合条件指令。 |
#endif | 指定一个条件指令的结束。 |
#line | 它可以让您修改编译器的行数以及(可选地)输出错误和警告的文件名。 |
#error | 它允许从代码的指定位置生成一个错误。 |
#warning | 它允许从代码的指定位置生成一级警告。 |
#region | 它可以让您在使用 Visual Studio Code Editor 的大纲特性时,指定一个可展开或折叠的代码块。 |
#endregion | 它标识着 #region 块的结束。 |
#define 用于定义一个新符号,通过使用该符号作为传递给 #if 指令的表达式,表达式将返回 true.
#define PI
using System;
namespace PreprocessorDAppl
{
class Program
{
static void Main(string[] args)
{
#if (PI)
Console.WriteLine("PI is defined");
#else
Console.WriteLine("PI is not defined");
#endif
Console.ReadKey();
}
}
}
运行结果:
PI is defined
#if用来创建一个条件指令。条件指令用于测试符号是否为真。如果为真,编译器会执行 #if 和下一个条件指令之间的代码。一个以 #if 指令开始的条件指令,必须以一个 #endif 指令终止。其运行原理和选择结构相似,#if内也可使用关系运算符和逻辑运算符,常用运算符如下:
#define DEBUG
#define VC_V10
using System;
public class TestClass
{
public static void Main()
{
#if (DEBUG && !VC_V10)
Console.WriteLine("DEBUG is defined");
#elif (!DEBUG && VC_V10)
Console.WriteLine("VC_V10 is defined");
#elif (DEBUG && VC_V10)
Console.WriteLine("DEBUG and VC_V10 are defined");
#else
Console.WriteLine("DEBUG and VC_V10 are not defined");
#endif
Console.ReadKey();
}
}
运行结果:
DEBUG and VC_V10 are defined
正则表达式 是一种匹配输入文本的功能模式。.Net 框架提供了正则表达式引擎。该模式由一个或多个字符、运算符和结构组成。
下面列出了用于定义正则表达式的各种类别的字符、运算符和结构。
正则表达式中的反斜杠字符(\
)指示其后跟的字符是特殊字符,或应按原义解释该字符。
转义字符 | 描述 | 模式 | 匹配 |
---|---|---|---|
\a | 与报警 (bell) 符 \u0007 匹配。 | \a | “Warning!” + ‘\u0007’ 中的 “\u0007” |
\b | 在字符类中,与退格键 \u0008 匹配。 | [\b]{3,} | “\b\b\b\b” 中的 “\b\b\b\b” |
\t | 与制表符 \u0009 匹配。 | (\w+)\t | “Name\tAddr\t” 中的 “Name\t” 和 “Addr\t” |
\r | 与回车符 \u000D 匹配。(\r 与换行符 \n 不是等效的。) | \r\n(\w+) | “\r\nHello\nWorld.” 中的 “\r\nHello” |
\v | 与垂直制表符 \u000B 匹配。 | [\v]{2,} | “\v\v\v” 中的 “\v\v\v” |
\f | 与换页符 \u000C 匹配。 | [\f]{2,} | “\f\f\f” 中的 “\f\f\f” |
\n | 与换行符 \u000A 匹配。 | \r\n(\w+) | “\r\nHello\nWorld.” 中的 “\r\nHello” |
\e | 与转义符 \u001B 匹配。 | \e | “\x001B” 中的 “\x001B” |
\ nnn | 使用八进制表示形式指定一个字符(nnn 由二到三位数字组成)。 | \w\040\w | “a bc d” 中的 “a b” 和 “c d” |
\x nn | 使用十六进制表示形式指定字符(nn 恰好由两位数字组成)。 | \w\x20\w | “a bc d” 中的 “a b” 和 “c d” |
\c X \c x | 匹配 X 或 x 指定的 ASCII 控件字符,其中 X 或 x 是控件字符的字母。 | \cC | “\x0003” 中的 “\x0003” (Ctrl-C) |
\u nnnn | 使用十六进制表示形式匹配一个 Unicode 字符(由 nnnn 表示的四位数)。 | \w\u0020\w | “a bc d” 中的 “a b” 和 “c d” |
\ | 在后面带有不识别的转义字符时,与该字符匹配。 | \d+[±x*]\d+\d+[±x*\d+ | “(2+2) * 39" 中的 “2+2” 和 "39” |
字符类与一组字符中的任何一个字符匹配。
字符类 | 描述 | 模式 | 匹配 |
---|---|---|---|
[character_group] | 匹配 character_group 中的任何单个字符。 默认情况下,匹配区分大小写。 | [mn] | “mat” 中的 “m”,“moon” 中的 “m” 和 “n” |
[^character_group] | 非:与不在 character_group 中的任何单个字符匹配。 默认情况下,character_group 中的字符区分大小写。 | [^aei] | “avail” 中的 “v” 和 “l” |
[ first - last ] | 字符范围:与从 first 到 last 的范围中的任何单个字符匹配。 | [b-d] | [b-d]irds 可以匹配 Birds、 Cirds、 Dirds |
. | 通配符:与除 \n 之外的任何单个字符匹配。 若要匹配原意句点字符(. 或 \u002E),您必须在该字符前面加上转义符 (.)。 | a.e | “have” 中的 “ave”, “mate” 中的 “ate” |
\p{ name } | 与 name 指定的 Unicode 通用类别或命名块中的任何单个字符匹配。 | \p{Lu} | “City Lights” 中的 “C” 和 “L” |
\P{ name } | 与不在 name 指定的 Unicode 通用类别或命名块中的任何单个字符匹配。 | \P{Lu} | “City” 中的 “i”、 “t” 和 “y” |
\w | 与任何单词字符匹配。 | \w | “Room#1” 中的 “R”、 “o”、 “m” 和 “1” |
\W | 与任何非单词字符匹配。 | \W | “Room#1” 中的 “#” |
\s | 与任何空白字符匹配。 | \w\s | “ID A1.3” 中的 "D " |
\S | 与任何非空白字符匹配。 | \s\S | “int __ctr” 中的 " _" |
\d | 与任何十进制数字匹配。 | \d | “4 = IV” 中的 “4” |
\D | 匹配不是十进制数的任意字符。 | \D | “4 = IV” 中的 " "、 “=”、 " "、 “I” 和 “V” |
定位点或原子零宽度断言会使匹配成功或失败,具体取决于字符串中的当前位置,但它们不会使引擎在字符串中前进或使用字符。
断言 | 描述 | 模式 | 匹配 |
---|---|---|---|
^ | 匹配必须从字符串或一行的开头开始。 | ^\d{3} | “567-777-” 中的 “567” |
$ | 匹配必须出现在字符串的末尾或出现在行或字符串末尾的 \n 之前。 | -\d{4}$ | “8-12-2012” 中的 “-2012” |
\A | 匹配必须出现在字符串的开头。 | \A\w{4} | “Code-007-” 中的 “Code” |
\Z | 匹配必须出现在字符串的末尾或出现在字符串末尾的 \n 之前。 | -\d{3}\Z | “Bond-901-007” 中的 “-007” |
\z | 匹配必须出现在字符串的末尾。 | -\d{3}\z | “-901-333” 中的 “-333” |
\G | 匹配必须出现在上一个匹配结束的地方。 | \G(\d) | “(1)(3)(5)7” 中的 “(1)”、 “(3)” 和 “(5)” |
\b | 匹配一个单词边界,也就是指单词和空格间的位置。 | er\b | 匹配"never"中的"er",但不能匹配"verb"中的"er"。 |
\B | 匹配非单词边界。 | er\B | 匹配"verb"中的"er",但不能匹配"never"中的"er"。 |
分组构造描述了正则表达式的子表达式,通常用于捕获输入字符串的子字符串。
这一部分比较难于理解,可以阅读正则表达式-选择、正则表达式的先行断言(lookahead)和后行断言(lookbehind)
分组构造 | 描述 | 模式 | 匹配 |
---|---|---|---|
( subexpression ) | 捕获匹配的子表达式并将其分配到一个从零开始的序号中。 | (\w)\1 | “deep” 中的 “ee” |
(?< name >subexpression) | 将匹配的子表达式捕获到一个命名组中。 | (?< double>\w)\k< double> | “deep” 中的 “ee” |
(?< name1 -name2 >subexpression) | 定义平衡组定义。 | (((?‘Open’()[()]*)+((?‘Close-Open’))[()])+)(?(Open)(?!))$ | “3+2^((1-3)(3-1))" 中的 "((1-3)(3-1))” |
(?: subexpression) | 定义非捕获组。 | Write(?:Line)? | “Console.WriteLine()” 中的 “WriteLine” |
(?imnsx-imnsx:subexpression) | 应用或禁用 subexpression 中指定的选项。 | A\d{2}(?i:\w+)\b | “A12xl A12XL a12xl” 中的 “A12xl” 和 “A12XL” |
(?= subexpression) | 零宽度正预测先行断言。 | \w+(?=.) | “He is. The dog ran. The sun is out.” 中的 “is”、 “ran” 和 “out” |
(?! subexpression) | 零宽度负预测先行断言。 | \b(?!un)\w+\b | “unsure sure unity used” 中的 “sure” 和 “used” |
(?<=subexpression) | 零宽度正回顾后发断言。 | (?<=19)\d{2}\b | “1851 1999 1950 1905 2003” 中的 “99”、"50"和 “05” |
(?<! subexpression) | 零宽度负回顾后发断言。 | (?<!wo)man\b | “Hi woman Hi man” 中的 “man” |
(?> subexpression) | 非回溯(也称为"贪婪")子表达式。 | [13579](?>A+B+) | “1ABB 3ABBC 5AB 5AC” 中的 “1ABB”、 “3ABB” 和 “5AB” |
using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string input = "1851 1999 1950 1905 2003";
string pattern = @"(?<=19)\d{2}\b";
foreach (Match match in Regex.Matches(input, pattern))
Console.WriteLine(match.Value);
Console.ReadKey();
}
}
运行结果:
99
50
05
限定符指定在输入字符串中必须存在上一个元素(可以是字符、组或字符类)的多少个实例才能出现匹配项。
限定符 | 描述 | 模式 | 匹配 |
---|---|---|---|
* | 匹配上一个元素零次或多次。 | \d*.\d | “.0”、 “19.9”、 “219.9” |
+ | 匹配上一个元素一次或多次。 | “be+” | “been” 中的 “bee”, “bent” 中的 “be” |
? | 匹配上一个元素零次或一次。 | “rai?n” | “ran”、 “rain” |
{ n } | 匹配上一个元素恰好 n 次。 | “,\d{3}” | “1,043.6” 中的 “,043”, “9,876,543,210” 中的 “,876”、 “,543” 和 “,210” |
{ n ,} | 匹配上一个元素至少 n 次。 | “\d{2,}” | “166”、 “29”、 “1930” |
{ n , m } | 匹配上一个元素至少 n 次,但不多于 m 次。 | “\d{3,5}” | “166”, “17668”, “193024” 中的 “19302” |
*? | 匹配上一个元素零次或多次,但次数尽可能少。 | \d*?.\d | “.0”、 “19.9”、 “219.9” |
+? | 匹配上一个元素一次或多次,但次数尽可能少。 | “be+?” | “been” 中的 “be”, “bent” 中的 “be” |
?? | 匹配上一个元素零次或一次,但次数尽可能少。 | “rai??n” | “ran”、 “rain” |
{ n }? | 匹配前导元素恰好 n 次。 | “,\d{3}?” | “1,043.6” 中的 “,043”, “9,876,543,210” 中的 “,876”、 “,543” 和 “,210” |
{ n ,}? | 匹配上一个元素至少 n 次,但次数尽可能少。 | “\d{2,}?” | “166”、 “29” 和 “1930” |
{ n , m }? | 匹配上一个元素的次数介于 n 和 m 之间,但次数尽可能少。 | “\d{3,5}?” | “166”, “17668”, “193024” 中的 “193” 和 “024” |
反向引用允许在同一正则表达式中随后标识以前匹配的子表达式。
反向引用构造 | 描述 | 模式 | 匹配 |
---|---|---|---|
\ number | 反向引用。 | 匹配编号子表达式的值。 | (\w)\1 “seek” 中的 “ee” |
\k< name > | 命名反向引用。 | 匹配命名表达式的值。 | (?< char>\w)\k< char> “seek” 中的 “ee” |
备用构造用于修改正则表达式以启用 either/or 匹配。
备用构造 | 描述 | 模式 | 匹配 |
---|---|---|---|
` | ` | 匹配以竖线 (` | `) 字符分隔的任何一个元素。 |
`(?( expression )yes | no )` | 如果正则表达式模式由 expression 匹配指定,则匹配 yes;否则匹配可选的 no 部分。 expression 被解释为零宽度断言。 | `(?(A)A\d{2}\b |
`(?( name )yes | no )` | 如果 name 或已命名或已编号的捕获组具有匹配,则匹配 yes;否则匹配可选的 no。 | `(?< quoted>“)?(?(quoted).+?” |
替换是替换模式中使用的正则表达式。
构造 | 描述 | 实例 |
---|---|---|
(?imnsx-imnsx) | 在模式中间对诸如不区分大小写这样的选项进行设置或禁用。 | \bA(?i)b\w+\b 匹配 “ABA Able Act” 中的 “ABA” 和 “Able” |
(?#注释) | 内联注释。该注释在第一个右括号处终止。 | \bA(?#匹配以A开头的单词)\w+\b |
# [行尾] | 该注释以非转义的 # 开头,并继续到行的结尾。 | (?x)\bA\w+\b#匹配以 A 开头的单词 |
Regex 类用于表示一个正则表达式。
方法 | 描述 |
---|---|
public bool IsMatch( string input ) | 指示 Regex 构造函数中指定的正则表达式是否在指定的输入字符串中找到匹配项。 |
public bool IsMatch( string input, int startat ) | 指示 Regex 构造函数中指定的正则表达式是否在指定的输入字符串中找到匹配项,从字符串中指定的开始位置开始。 |
public static bool IsMatch( string input, string pattern ) | 指示指定的正则表达式是否在指定的输入字符串中找到匹配项。 |
public MatchCollection Matches( string input ) | 在指定的输入字符串中搜索正则表达式的所有匹配项。 |
public string Replace( string input, string replacement ) | 在指定的输入字符串中,把所有匹配正则表达式模式的所有匹配的字符串替换为指定的替换字符串。 |
public string[] Split( string input ) | 把输入字符串分割为子字符串数组,根据在 Regex 构造函数中指定的正则表达式模式定义的位置进行分割。 |
using System;
using System.Text.RegularExpressions;
namespace RegExApplication
{
class Program
{
private static void showMatch(string text, string expr)
{
Console.WriteLine("The Expression: " + expr);
MatchCollection mc = Regex.Matches(text, expr); // 在text中以正则表达式expr匹配单词
foreach (Match m in mc) // 逐次打印匹配结果
{
Console.WriteLine(m);
}
}
static void Main(string[] args)
{
string str = "A Thousand Splendid Suns";
Console.WriteLine("Matching words that start with 'S': ");
showMatch(str, @"\bS\S*");
Console.ReadKey();
}
}
}
运行结果:
Matching words that start with 'S':
The Expression: \bS\S*
Splendid
Suns
using System;
using System.Text.RegularExpressions;
namespace RegExApplication
{
class Program
{
private static void showMatch(string text, string expr)
{
Console.WriteLine("The Expression: " + expr);
MatchCollection mc = Regex.Matches(text, expr); // 在text中以正则表达式expr匹配单词
foreach (Match m in mc) // 逐次打印匹配结果
{
Console.WriteLine(m);
}
}
static void Main(string[] args)
{
string str = "make maze and manage to measure it";
Console.WriteLine("Matching words start with 'm' and ends with 'e':");
showMatch(str, @"\bm\S*e\b");
Console.ReadKey();
}
}
}
运行结果:
Matching words start with 'm' and ends with 'e':
The Expression: \bm\S*e\b
make
maze
manage
measure
using System;
using System.Text.RegularExpressions;
namespace RegExApplication
{
class Program
{
static void Main(string[] args)
{
string input = "Hello World ";
string pattern = "\\s+";
string replacement = " ";
Regex rgx = new Regex(pattern);
string result = rgx.Replace(input, replacement);
Console.WriteLine("Original String: {0}", input);
Console.WriteLine("Replacement String: {0}", result);
Console.ReadKey();
}
}
}
运行结果:
Original String: Hello World
Replacement String: Hello World
异常是在程序执行期间出现的问题。
C# 异常处理时建立在四个关键词之上的:try、catch、finally 和 throw。
假设一个代码块(block)可能出现异常,可使用 try 和 catch 关键字捕获异常。try/catch 块内的代码为受保护的代码,使用 try/catch 语法如下所示:
try
{
// 可能引起异常的语句
}
catch( ExceptionName e1 ) // 语句运行结果可能引起的异常
{
// 错误处理代码
}
catch( ExceptionName e2 ) // 语句运行结果可能引起的异常
{
// 错误处理代码
}
catch( ExceptionName eN ) // 语句运行结果可能引起的异常
{
// 错误处理代码
}
finally // 异常处理结果,无论是否发生异常,都会运行该语句内容
{
// 要执行的语句
}
C# 异常是使用类来表示的。C# 中的异常类主要是直接或间接地派生于 System.Exception 类。
System.ApplicationException 和 System.SystemException 类就是派生于 System.Exception 类的异常类。
System.ApplicationException 类支持由应用程序生成的异常。所以程序员定义的异常都应派生自该类。
System.SystemException 类是所有预定义的系统异常的基类。
下表列出了一些派生自 System.SystemException 类的预定义的异常类:
异常类 | 描述 |
---|---|
System.IO.IOException | 处理 I/O 错误。 |
System.IndexOutOfRangeException | 处理当方法指向超出范围的数组索引时生成的错误。 |
System.ArrayTypeMismatchException | 处理当数组类型不匹配时生成的错误。 |
System.NullReferenceException | 处理当依从一个空对象时生成的错误。 |
System.DivideByZeroException | 处理当除以零时生成的错误。 |
System.InvalidCastException | 处理在类型转换期间生成的错误。 |
System.OutOfMemoryException | 处理空闲内存不足生成的错误。 |
System.StackOverflowException | 处理栈溢出生成的错误。 |
C# 以 try 和 catch 块的形式提供了一种结构化的异常处理方案。使用这些块,把核心程序语句与错误处理语句分离开。
这些错误处理块是使用 try、catch 和 finally 关键字实现的。
using System;
namespace ErrorHandlingApplication
{
class DivNumbers
{
int result;
DivNumbers()
{
result = 0;
}
public void division(int num1, int num2)
{
try
{
result = num1 / num2;
}
catch (DivideByZeroException e) // 捕捉发生除数为零的异常
{
Console.WriteLine("Exception caught: {0}", e);
}
finally
{
Console.WriteLine("Result: {0}", result); // 输出打印结果
}
}
static void Main(string[] args)
{
DivNumbers d = new DivNumbers();
d.division(25, 0); // 使用异常处理
Console.ReadKey();
}
}
}
运行结果:
Exception caught: System.DivideByZeroException: 尝试除以零。
在 ErrorHandlingApplication.DivNumbers.division(Int32 num1, Int32 num2) 位置 C:\Users\xxx\source\repos\xxx\Program.cs:行号 15
Result: 0
C#允许用户自定义自己的异常。用户自定义的异常类派生自 ApplicationException 类。
using System;
namespace UserDefinedException
{
class TestTemperature
{
static void Main(string[] args)
{
Temperature temp = new Temperature();
try
{
temp.showTemp();
}
catch (TempIsZeroException e) // 捕捉发生的异常
{
Console.WriteLine("TempIsZeroException: {0}", e.Message);
}
Console.ReadKey();
}
}
}
// 用户自定义异常处理函数
public class TempIsZeroException : ApplicationException
{
public TempIsZeroException(string message) : base(message)
{
}
}
public class Temperature
{
int temperature = 0;
public void showTemp()
{
if (temperature == 0)
{
throw (new TempIsZeroException("Zero Temperature found")); // 若发生异常,则向外抛出
}
else
{
Console.WriteLine("Temperature: {0}", temperature);
}
}
}
运行结果:
TempIsZeroException: Zero Temperature found
如果异常是直接或间接派生自 System.Exception 类,可抛出一个对象。可在 catch 块中使用 throw 语句来抛出当前的对象。
Catch(Exception e)
{
...
Throw e // 抛出异常
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。