c#类 如何重载方法

c#
779
2024/11/19 9:30:54
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中,重载方法是在同一个类中定义多个具有相同名称但参数列表不同的方法。重载方法的返回类型可以相同,也可以不同。重载方法允许你以相同的方法名称提供不同的功能,通过传递不同的参数来区分不同的实现。

以下是一个简单的C#类示例,演示了如何重载方法:

using System;

public class Calculator
{
    // 重载加法方法
    public int Add(int a, int b)
    {
        return a + b;
    }

    // 重载加法方法,接受两个浮点数作为参数
    public double Add(double a, double b)
    {
        return a + b;
    }

    // 重载乘法方法
    public int Multiply(int a, int b)
    {
        return a * b;
    }

    // 重载乘法方法,接受两个浮点数作为参数
    public double Multiply(double a, double b)
    {
        return a * b;
    }
}

class Program
{
    static void Main(string[] args)
    {
        Calculator calculator = new Calculator();

        Console.WriteLine("Integer addition: " + calculator.Add(5, 3));
        Console.WriteLine("Floating-point addition: " + calculator.Add(5.5, 3.5));

        Console.WriteLine("Integer multiplication: " + calculator.Multiply(5, 3));
        Console.WriteLine("Floating-point multiplication: " + calculator.Multiply(5.5, 3.5));
    }
}

在这个示例中,我们定义了一个名为Calculator的类,其中包含四个重载方法:AddMultiply。这些方法分别接受整数和浮点数作为参数。在Main方法中,我们创建了一个Calculator对象,并使用不同的参数调用重载方法。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C# List的赋值问题的解决