.net 隐式自定义类型转换运算符 static implicit operator

今天写代码的时候遇到了入场语法:

复制代码
public static implicit operator T1(T2 t) 
{ 
        return new T1{ T1.Name = t.Name } 
}

看着不是一个方法,也不是一个构造函数,作为工作多年的.net程序员竟然没见过这种修饰符,后面才知道这是 隐式的自定义类型转换运算符

T1作为目标类型

T2作为源类型

用 static implicit operator 修饰符 可以直接将T2隐式转换为T1

下面用一个例子来简单说明一下:

创建一个学生类和一个用户类:Student.cs User.cs

cs 复制代码
public class Student
    {
        public string StudentId { get; set; }
        public string StudentName { get; set; }

        public string ClassName { get; set; }
        
    }


    public class User
    {
        public string UserId { get; set; }

        public string UserName { get; set; }

        public string Password { get; set; }
       
    }

接着就是重点,在学生类添加隐式转换:

cs 复制代码
        public static implicit operator Student(User user)
        {
            return new Student
            {
                StudentId = user.UserId,
                StudentName = user.UserName,
                ClassName = "一年级"
            };
        }

写一个测试的类:

cs 复制代码
        public Student GetStudent()
        {
            var user = new User();
            user.UserName = "小王";
            user.UserId = "001";
            user.Password = "123";
            return user;
        }

可以看到接口希望返回一个学生对象,方法里面却返回了一个User对象,神奇的是也没有报错,运行看一下:

调用后成功返回了一个学生对象,是不是很神奇!

我觉得用这种隐式类型转换可以实现实体到DTO的映射,就是不知道这么写运行效率如何,感兴趣的可以研究一下。

相关推荐
神仙别闹26 分钟前
基于C#和Sql Server 2008实现的(WinForm)订单生成系统
开发语言·c#
向宇it10 小时前
【unity小技巧】unity 什么是反射?反射的作用?反射的使用场景?反射的缺点?常用的反射操作?反射常见示例
开发语言·游戏·unity·c#·游戏引擎
九鼎科技-Leo10 小时前
什么是 WPF 中的依赖属性?有什么作用?
windows·c#·.net·wpf
Heaphaestus,RC11 小时前
【Unity3D】获取 GameObject 的完整层级结构
unity·c#
baivfhpwxf202312 小时前
C# 5000 转16进制 字节(激光器串口通讯生成指定格式命令)
开发语言·c#
直裾12 小时前
Scala全文单词统计
开发语言·c#·scala
ZwaterZ13 小时前
vue el-table表格点击某行触发事件&&操作栏点击和row-click冲突问题
前端·vue.js·elementui·c#·vue
ZwaterZ15 小时前
el-table-column自动生成序号&&在序号前插入图标
前端·javascript·c#·vue
SRC_BLUE_1718 小时前
SQLI LABS | Less-55 GET-Challenge-Union-14 Queries Allowed-Variation 2
oracle·c#·less
yngsqq19 小时前
037集——JoinEntities连接多段线polyline和圆弧arc(CAD—C#二次开发入门)
开发语言·c#·swift