C# 拓展方法(涉及Linq)

拓展方法


C#中,扩展方法是一种特殊的静态方法,允许开发者向现有类型"添加"新的方法,而无需修改该类型的源代码或创建新的派生类型。这种机制提供了一种更为灵活的方式来扩展已有的类或结构的功能。

C# 中的扩展方法是一种特殊的静态方法,它允许你为现有类型添加新的方法,而不需要修改原始类型。扩展方法通常用于为那些你无法修改的类型添加功能,比如 .NET Framework 中的类型。


扩展方法的定义必须在一个静态类中,并且方法的第一个参数必须使用 this 关键字,这个
参数指定了扩展方法所作用的类型


定义一个扩展方法

要定义一个扩展方法,需要遵循以下规则:

扩展方法必须在静态类中定义。

扩展方法的第一个参数要使用 this 关键字,并且这个参数指定了方法将扩展哪个类型。

第一个参数之后的参数是扩展方法所需要的其他参数。

下面是一个简单的扩展方法的例子,这个方法为 int 类型添加了一个名为 Square 的方法,用于计算整数的平方:

csharp 复制代码
public static class IntegerExtensions
{
    // 这是一个扩展方法,它扩展了 int 类型
    public static int Square(this int num)
    {
        return num * num;
    }
}

使用扩展方法

一旦定义了扩展方法,就可以像使用实例方法一样来使用它。

例如

csharp 复制代码
using System;

namespace ExtensionMethods
{
    class Program
    {
        static void Main(string[] args)
        {
            int number = 5;
            int square = number.Square(); // 调用扩展方法
            Console.WriteLine($"The square of {number} is {square}");
        }
    }

    public static class IntegerExtensions
    {
        public static int Square(this int num)
        {
            return num * num;
        }
    }
}

在这个例子中,我们不需要修改 int 类型的定义,就可以直接调用 Square 方法。


再举个例子

csharp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace forCode {
    class Program {
        static void Main(string[] args) {

            double a = 2;
            int b = a.Square();
            Console.WriteLine($"b = {b}");
            Console.ReadKey();
        }
    }
    public static class aa {
        public static int Square(this double num) {
            return Convert.ToInt32(Math.Pow(num, 2.0));
        }
    }

}

上述例子是double的拓展,一个double变量平方后转为int


终极例子

csharp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace forCode {
    class Program {
        static void Main(string[] args) {

            MyNumber m = new MyNumber();
            m.a = 1;
            m.AddSome(3);
            Console.WriteLine($"m.a = {m.a}");
            Console.ReadKey();
        }
    }

    public class MyNumber {
        public int a;
    } 

    public static class MyExTention {
        public static int Square(this double num) {
            return Convert.ToInt32(Math.Pow(num, 2.0));
        }
        public static void AddSome(this MyNumber myNumber, int num) {
            myNumber.a += num;
        }
    }

}

为自定义的类添加扩展方法

注意事项

扩展方法不能访问它们所扩展的类型中的私有成员。

如果扩展方法与现有方法冲突,那么扩展方法将不会被调用。

扩展方法是一种语法糖,编译器会将它们转换为静态方法的调用。

通过使用扩展方法,开发者可以更加方便地对现有类型进行功能增强,同时保持代码的整洁和可维护性。

与Linq

Where就是一种扩展方法

相关推荐
QTX187302 分钟前
JavaScript 中的原型链与继承
开发语言·javascript·原型模式
shaoing6 分钟前
MySQL 错误 报错:Table ‘performance_schema.session_variables’ Doesn’t Exist
java·开发语言·数据库
The Future is mine1 小时前
Python计算经纬度两点之间距离
开发语言·python
Enti7c1 小时前
HTML5和CSS3的一些特性
开发语言·css3
爱吃巧克力的程序媛1 小时前
在 Qt 创建项目时,Qt Quick Application (Compat) 和 Qt Quick Application
开发语言·qt
勘察加熊人1 小时前
forms实现俄罗斯方块
c#
独好紫罗兰2 小时前
洛谷题单3-P5719 【深基4.例3】分类平均-python-流程图重构
开发语言·python·算法
篝火悟者2 小时前
自学-C语言-基础-数组、函数、指针、结构体和共同体、文件
c语言·开发语言
genispan2 小时前
QT/C++ 多线程并发下载实践
开发语言·c++·qt
-代号95272 小时前
【JavaScript】十三、事件监听与事件类型
开发语言·javascript·ecmascript