C#中字典Dictionary与自定义类型CustomType之间的转换

C#中字典Dictionary与自定义类型CustomType之间的转换

思路:

可以使用反射System.Reflection来获取类的具体属性,

属性名称就映射字典的键Key。

新建控制台程序DictionaryCustomClassConversionDemo

第一步、新建关键转换类ConversionUtil。

类ConversionUtil的源代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;namespace DictionaryCustomClassConversionDemo
{/// <summary>/// 字典Dictionary与自定义类CustomClass属性之间的转化/// 斯内科 2024-05-10/// </summary>public class ConversionUtil{/// <summary>/// 将一个实体类的属性转化为键值对集合,键为属性名PropertyName,值为对应的值/// </summary>/// <typeparam name="T">一种自定义类,该类必须已实例化</typeparam>/// <param name="obj">实例化后的类对象</param>/// <returns>返回转化后的字典</returns>public static Dictionary<string, object> CustomClassToDictionary<T>(T obj) where T : class, new(){Dictionary<string, object> dict = new Dictionary<string, object>();Type type = typeof(T);PropertyInfo[] propertyInfos = type.GetProperties();for (int i = 0; i < propertyInfos.Length; i++){string key = propertyInfos[i].Name;object val = propertyInfos[i].GetValue(obj);dict.Add(key, val);}return dict;}/// <summary>/// 将字典转化为实例化类,如果类的属性名称在字典中存在该键key,就使用该键对应的值为类的属性key赋值【注意,转化可能因值的类型、范围等不同而导致失败】/// 如果类的属性名称在字典中不存在该键key,则不进行赋值,只是按属性对应类型的默认值处理/// </summary>/// <typeparam name="T">要转化的目标类型</typeparam>/// <param name="dict">键值对字典</param>/// <returns>要获取的目标实例化类对象,如果字典为空,则按类的默认值处理</returns>public static T DictionaryToCustomClass<T>(Dictionary<string, object> dict) where T : class{T obj = default(T);if (dict == null || dict.Count == 0) {return obj;}Type type = typeof(T);obj = (T)Activator.CreateInstance(type);PropertyInfo[] propertyInfos = type.GetProperties();for (int i = 0; i < propertyInfos.Length; i++){string key = propertyInfos[i].Name;if (dict.ContainsKey(key)) {propertyInfos[i].SetValue(obj, dict[key]);}}return obj;}}
}

二、新建实体测试类TestClass。

测试类TestClass源程序如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace DictionaryCustomClassConversionDemo
{/// <summary>/// 测试类/// </summary>public class TestClass{/// <summary>/// 主键/// </summary>public int CoreID { get; set; }/// <summary>/// 档位编号/// </summary>public int LevelId { get; set; }/// <summary>/// 电压下限/// </summary>public double VoltageMin { get; set; }/// <summary>/// 电压上限/// </summary>public double VoltageMax { get; set; }/// <summary>/// 内阻值/// </summary>public string Resistance { get; set; }/// <summary>/// 修改时间/// </summary>public DateTime ModifyTime { get; set; }public override string ToString(){return $"{{CoreID:{CoreID},\nLevelId:{LevelId},\nVoltageMin:{VoltageMin},\nVoltageMax:{VoltageMax},\nResistance:{Resistance},\nModifyTime:{ModifyTime.ToString("yyyy-MM-dd HH:mm:ss")}}}";}}
}

三、调用测试Program如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace DictionaryCustomClassConversionDemo
{class Program{static void Main(string[] args){Console.SetWindowSize(100, 60);try{TestClass testClass = new TestClass(){CoreID = 6,LevelId = 3,VoltageMin = 3.10,VoltageMax = 3.99,Resistance = "888MΩ",ModifyTime = DateTime.Now};Console.WriteLine($"--------打印原对象信息:--------");Console.WriteLine(testClass);Dictionary<string, object> dict = ConversionUtil.CustomClassToDictionary(testClass);Console.WriteLine("--------打印类对象转化后的字典信息:--------");for (int i = 0; i < dict.Count; i++){KeyValuePair<string, object> keyValuePair = dict.ElementAt(i);Console.WriteLine($"{keyValuePair.Key}:{keyValuePair.Value}");}Console.WriteLine();Console.WriteLine("--------测试字典转化为类--------");dict["Resistance"] = "333MΩ";dict["LevelId"] = 1;dict["VoltageMax"] = 5;dict.Add("额外参数", "额外值");Console.WriteLine("--------打印原字典信息1:--------");for (int i = 0; i < dict.Count; i++){KeyValuePair<string, object> keyValuePair = dict.ElementAt(i);Console.WriteLine($"{keyValuePair.Key}:{keyValuePair.Value}");}TestClass testObj1 = ConversionUtil.DictionaryToCustomClass<TestClass>(dict);Console.WriteLine("--------打印字典转化为类对象1--------");Console.WriteLine(testObj1);Console.WriteLine();dict["Resistance"] = 66666;dict["LevelId"] = 5;Console.WriteLine("--------打印原字典信息2:--------");for (int i = 0; i < dict.Count; i++){KeyValuePair<string, object> keyValuePair = dict.ElementAt(i);Console.WriteLine($"{keyValuePair.Key}:{keyValuePair.Value}");}TestClass testObj2 = ConversionUtil.DictionaryToCustomClass<TestClass>(dict);Console.WriteLine("--------打印字典转化为类对象2--------");Console.WriteLine(testObj2);}catch (Exception ex) {Console.WriteLine($"{ex.Message}.异常类型【{ex.GetType()}】");}Console.ReadLine();}}
}

4、程序运行如图:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/9660.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于STM32F401RET6智能锁项目(使用库函数点灯、按键)

点灯硬件原理图 1、首先&#xff0c;我们查看一下原理图&#xff0c;找到相对应的GPIO口 LED_R低电平导通&#xff0c;LED4亮&#xff0c;所以LED_R的GPIO口需要配置一个低电平才能亮&#xff1b; LED_G低电平导通&#xff0c;LED3亮&#xff0c;所以LED_R的GPIO口需要配置一…

举办《Llama3关键技术深度解析与构建Responsible AI、算法及开发落地实战》线上高级研修讲座

举办《Llama3关键技术深度解析与构建Responsible AI、算法及开发落地实战》线上高级研修讲座

数据库的一些知识点

1.单选题 (2分) 从一个数据库文件中取出满足某个条件的所有记录形成一个新的数据库文件的操作是( )操作 。 A 投影 B 连接 C 选择 D 复制 本题得分&#xff1a; 2分 正确答案&#xff1a; C 2.单选题 (2分) 关系数据库中的投影操作是指从关系 中( ) 。 A 抽出特定记录 B …

AI 资料汇总专栏

包含AI资料、大模型资料、AI最新行业发展 人工智能&#xff08;Artificial Intelligence&#xff0c;简称AI&#xff09;是一门研究如何使计算机能够具备智能行为的科学与技术。它致力于开发出能够像人类一样思考、学习、理解和决策的计算机系统。自20世纪50年代以来&#xff…

C++ 内联函数

一 宏定义带来的问题 最后ret的值是0。问题出在编译器在遇到宏时只是进行简单的宏替换。 宏的好处是没有类似于普通函数调用时的系统开销&#xff0c;并且宏定义的参数可以适宜大多数类型的数据。 宏定义也有缺点&#xff1a; 有时会产生不可预料的副作用。 二 用inline定义…

MySQL用命令行导出数据库

问题&#xff1a; 交作业的时候要求交数据文件&#xff0c;因为用的MySQL数据库&#xff0c;就在想怎么用命令行导出数据库&#xff0c;在csdn上找了其他文章&#xff0c;使用MySQL的命令行用下面语句&#xff0c;结果发生报错 mysqldump -u 用户名 -p 数据库名 > 输出地址…

开源框架平台:功能优势多,助力数字化转型!

伴随着科技越来越发达&#xff0c;低代码技术平台、开源框架平台逐渐在各中小型企业里获得重视和青睐&#xff0c;成为助力企业实现流程化办公&#xff0c;进入数字化转型的的有力武器。在众多服务商中&#xff0c;谁拥有市场竞争力&#xff0c;谁在服务和产品方面更具核心价值…

用 JavaScript 计算 SHA-256 hash值

SHA-256算法是一个广泛使用的散列函数&#xff0c;它产生256位的hash值。它用于许多安全应用程序和协议&#xff0c;包括 TLS 和 SSL、 SSH、 PGP 和比特币。 在 JavaScript 中计算 SHA-256 hash值使用原生 API 很容易&#xff0c;但是浏览器和 Node.js 之间有一些区别。由于浏…

前端Vue怎么获取登录的用户名或用户id

一、使用全局状态管理&#xff08;Vuex&#xff09;获取登录用户名 创建 Vuex store&#xff0c;并在其中定义一个用于存储用户名的状态。 // store.js import Vue from vue; import Vuex from vuex;Vue.use(Vuex);export default new Vuex.Store({state: {username: , // 存…

UnityEditor 添加快捷菜单

加餐啦~ public static class XXXEditorExtension{//Inspector 路径const string Path_0 "CONTEXT/类名/xxx";//Hierachy 右键菜单路径const string Path_1 "GameObject/xxx";//顶部菜单栏路径const string Path_2 "CustomFunc/xxx";[MenuIte…

Vue 插槽

Vue插槽是一种特殊的语法&#xff0c;用于在组件中定义可复用的模板部分。它允许开发者在组件的标记中声明一个或多个插槽&#xff0c;然后在使用该组件时&#xff0c;可以根据自己的需求将内容插入到这些插槽中。 Vue插槽分为默认插槽和具名插槽两种。 目录 默认插槽 语法…

springboot-aop-学习笔记

什么是AOP&#xff1f; AOP英文全称&#xff1a;Aspect Oriented Programming&#xff08;面向切面编程、面向方面编程&#xff09;&#xff0c;其实说白了&#xff0c;就是 需要 某个通用的方法时&#xff0c;可以创建一个模板&#xff0c;模板里面就有这些通用的方法&#xf…

effective python学习笔记_类与接口

用组合类实现多层结构而不用内置类型 例子&#xff1a;成绩单&#xff0c;存储学生各科成绩多个然后加权重&#xff0c;如果用字典类型会导致字典有多层嵌套结构 思想 当用内置类型如字典元组等结构出现超过二层的多层嵌套结构时&#xff0c;读起来会比较难懂&#xff0c;此时…

nestjs 全栈进阶--中间件

视频教程 22_nest中中间件_哔哩哔哩_bilibili 1. 介绍 在Nest.js框架中&#xff0c;中间件&#xff08;Middleware&#xff09;是一个非常重要的概念&#xff0c;它是HTTP请求和响应生命周期中的一个重要组成部分&#xff0c;允许开发者在请求到达最终的目的控制器方法之前或…

04.进程间通信

进程间通信基本概念 IPC&#xff08;Inter Process Communication&#xff09; 进程间通信 进程通信就是不同进程之间进行信息的交换或传播 为什么进程之间实现通信和困难 因为进程之间具有独立性&#xff0c;数据独立&#xff0c;程序可能独立也可能不独立&#xff08;父子进…

从面试官视角出发,聊聊产品经理的面试攻略

一、请进行自我介绍 这题基本是面试的开胃菜了&#xff0c;估计面试多的&#xff0c;自己答案都能倒背如流啦。 其实自我介绍还是蛮重要的&#xff0c;对我来说主要有 3 个作用&#xff1a;面试准备、能力预估、思维评估。 面试准备&#xff1a;面试官每天都要面 3 ~6 人&am…

Windows系统下通过nginx配置多项目

文章目录 前言大概思路实际操作记录&#xff1a;查看nginx 错误日志问下AI注意点&#xff1a; 当访问域名根路径时&#xff0c;重定向到/pc总结 前言 在windows电脑启动一个nginx 测试配置多前端项目&#xff0c;一个pc端&#xff08;vue3tsvite &#xff0c;history路由&…

【C++进阶】C++中的map和set

一、关联式容器 在初阶阶段&#xff0c;我们已经接触过STL 中的部分容器&#xff0c;比如&#xff1a; vector 、 list 、 deque&#xff0c; forward_list 等&#xff0c;这些容器统称为序列式容器&#xff0c;因为其底层为线性序列的数据结构&#xff0c;里面存储的是元素本…

Linux Make命令详解

1 概述 make命令常用参数-C,-n, -j.其实make还有很多参数也很有用&#xff0c;本文描述将简单介绍。 使用make版本: $ make --version GNU Make 4.2.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2016 Free Software Foundation, Inc. License GPLv3: GNU GPL versio…

八股kafka(一)

目录 1、面试官&#xff1a;Kafka是如何保证消息不丢失 2、面试官&#xff1a;Kafka中消息的重复消费问题如何解决的 3、面试官&#xff1a;Kafka是如何保证消费的顺序性 4、面试官&#xff1a;Kafka的高可用机制有了解过嘛 5、面试官&#xff1a;解释一下复制机制中的ISR 6、面…