在C#中定义自定义方法,使用以下语法 -
<Access Specifier> <Return Type> <Method Name>(Parameter List) { Method Body }
以下是方法的各种元素 -
访问说明符 - 这决定了变量或方法对另一个变量或方法的可见性class.
返回类型 - 方法可以返回一个值。返回类型是方法返回值的数据类型。如果该方法不返回任何值,则返回类型为 void.
方法名称 - 方法名称是唯一标识符,区分大小写。它不能与类中声明的任何其他标识符相同。
参数列表 - 括在括号之间的参数用于从方法传递和接收数据。参数列表是指方法的参数的类型、顺序和数量。参数可选;也就是说,方法可以不包含参数。
方法主体 - 这包含完成所需活动所需的一组指令。
让我们看一个示例 -
现场演示
using System; namespace Demo { class NumberManipulator { public int FindMax(int num1, int num2) { /* local variable declaration */ int result; if (num1 > num2) result = num1; else result = num2; return result; } static void Main(string[] args) { /* local variable definition */ int a = 90; int b = 15; int ret; NumberManipulator n = new NumberManipulator(); //calling the FindMax method ret = n.FindMax(a, b); Console.WriteLine("Max value is : {0}", ret ); Console.ReadLine(); } } }
Max value is : 90
以上是如何在C#中定义自定义方法?的详细内容。更多信息请关注PHP中文网其他相关文章!