在 C# 中退出函数
本文将介绍如何在 C# 中退出函数。
跳转语句一般用于控制程序执行的流程。换句话说,跳转语句在执行程序中无条件地将控制从一个点转移到另一个点。
以下是分类为 Jump 语句的 C# 中的五条语句。
-
break
语句; -
continue
语句; -
goto
语句; -
return
语句; -
throw
语句。
在 C# 中使用 break
语句退出函数
break
语句在它存在的地方停止循环。然后,如果可用,控件将传递到终止语句之后的语句。
如果嵌套循环中存在 break
语句,它只会终止那些包含 break 语句的循环。
例子:
// C# program to illustrate the
// use of break statement
using System;
class Test {
// Main Method
static public void Main() {
int[] Numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 };
foreach (int number in Numbers) {
// print only the first 10 numbers
if (number > 10) {
break;
}
Console.Write($"{number} ");
}
}
}
输出:
1 2 3 4 5 6 7 8 9 10
在 C# 中使用 continue
语句退出函数
当某个条件为真时,continue
语句会跳过代码块的执行。与 break
语句不同,continue
语句将控制转移到循环的开头。
下面是使用 foreach
方法的代码示例。
// C# program to illustrate the
// use of continue statement
using System;
class Test {
// Main Method
static public void Main() {
int[] Numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 };
foreach (int oddNumber in Numbers) {
// print only the odd numbers 10 numbers
if (oddNumber % 2 == 0) {
continue;
}
Console.Write($"{oddNumber} ");
}
}
}
输出:
1 3 5 7 9 11 13 15 17 19
在 C# 中使用 goto
语句退出函数
我们使用 goto
语句将控制转移到程序中的标记语句。标签必须是放在 goto
语句之前的有效标识符。
换句话说,它强制执行标签上的代码。
在下面的示例中,goto
语句强制执行案例 5。
// C# program to illustrate the
// use of goto statement
using System;
class Test {
// Main Method
static public void Main() {
int age = 18;
switch (age) {
case 5:
Console.WriteLine("5yrs is less than the recognized age for adulthood");
break;
case 10:
Console.WriteLine("Age 10 is still underage");
break;
case 18:
Console.WriteLine("18yrs! You are now an adult and old enough to drink");
// goto statement transfer
// the control to case 5
goto case 5; default:
Console.WriteLine("18yrs is the recognized age for adulthood");
break;
}
}
}
输出:
18yrs! You are now an adult and old enough to drink
5yrs is less than the recognized age for adulthood
在 C# 中使用 return
语句退出函数
return
语句终止它出现的函数执行,然后将控制权返回给调用方法的结果(如果可用)。但是,如果函数没有值,则使用 return
语句而不使用表达式。
例子:
// C# program to illustrate the
// use of return statement
using System;
class Test {
// Main Method
static public void Main() {
int[] Numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 };
foreach (int number in Numbers) {
// print only the first 10 numbers
if (number > 10) {
return;
}
return;
Console.Write($"{number} ");
}
}
}
输出:
No output
在 C# 中使用 throw
语句退出函数
异常表明发生了错误或改变了程序的执行。throw
语句使用 new
关键字创建一个有效 Exception class
的对象。
所有 Exception 类都有 Stacktrace 和 Message 属性。
请注意,有效异常必须从 Exception 类派生。有效的异常类包括 ArgumentException
、InvalidOperationException
、NullReferenceException
和 IndexOutOfRangeException
。
例子:
// C# program to illustrate the
// use of throw statement
using System;
class Test {
// Main Method
static public void Main() {
int[] Numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 };
foreach (int number in Numbers) {
// using try catch block to
// handle the Exception
try {
// print only the first 10 numbers
if (number > 10) {
Console.WriteLine();
throw new NullReferenceException("Number is greater than 10");
}
Console.Write($"{number} ");
} catch (Exception exp) {
Console.WriteLine(exp.Message);
return;
}
}
}
}
输出:
1 2 3 4 5 6 7 8 9 10
Number is greater than 10
相关文章
在 C# 中将双精度值四舍五入为整数值
发布时间:2024/02/03 浏览次数:84 分类:编程语言
-
Math.Ceiling(),Math.Floor()和 Math.Round()函数有 3 种主要方法可用于在 C# 中将双精度值四舍五入为整数值。使用 C# 中的 Math.Ceiling() 函数将双精度值四舍五入为整数值
C# 中的 async 和 await
发布时间:2024/02/03 浏览次数:97 分类:编程语言
-
async 和 await 关键字用于 C# 中的异步编程。C# 中的异步编程 如果同步应用程序中有任何进程被阻止,则整个应用程序将被阻止并停止响应
在 Mac OS 上设置 C#
发布时间:2024/02/03 浏览次数:135 分类:编程语言
-
在本文中,了解设置 C# 语言以在 Mac OS 上进行开发的过程。本文将演示 Mac OS 上 C# 语言的完整设置和基本语法。在 Mac OS 上安装和设置 C#
在 C# 中将函数作为参数传递
发布时间:2024/02/03 浏览次数:192 分类:编程语言
-
我们可以使用 2 种主要方法将函数作为参数传递给 C# 中的另一个函数,func<>委托和 Action<>委托。
在 C# 中创建内联函数
发布时间:2024/02/03 浏览次数:132 分类:编程语言
-
在 C# 中创建内联函数的方法主要有 3 种,分别是使用 lambda 表达式、使用 lambda 语句和使用局部函数。在 C# 中使用 Lambda 表达式创建内联函数 在 C 和 C++ 之类的编程语言中,内联函数用 inline 关
从 C# 中的函数返回多个值
发布时间:2024/02/03 浏览次数:88 分类:编程语言
-
有 3 种主要方法可用于从 C# 中的函数返回多个值,使用数组作为函数返回类型,使用类或结构体作为函数返回类型,以及使用 Tuple
类作为函数的返回类型。
C# 中的抽象函数与虚拟函数
发布时间:2024/02/03 浏览次数:121 分类:编程语言
-
抽象函数自身不提供任何定义,而虚拟函数在 C# 中具有默认定义。本教程将比较 C# 中的抽象函数和虚拟函数。C# 中的抽象函数 在 C# 中,抽象函数没有自己的定义。
在 C# 中检查进程是否正在运行
发布时间:2024/02/03 浏览次数:182 分类:编程语言
-
可使用两种主要方法检查进程是否在 C# 中运行:Process.GetProcessByName()函数和 Process.GetProcessById()函数。
在 C# 中读取和写入 INI 文件
发布时间:2024/02/02 浏览次数:109 分类:编程语言
-
本教程教授如何在 C# 中读取和写入 INI 文件。本教程教授如何在 C# 中读取和写入 INI 文件。C# 中的 INI 文件是什么